From 5798516fe92ee7ca7e9adbfa6b1eea476c5f533f Mon Sep 17 00:00:00 2001 From: huzhikun Date: Thu, 7 Aug 2025 21:06:56 +0800 Subject: [PATCH 1/2] dev --- vllm_mindspore/model_executor/models/attention_mask.py | 1 + 1 file changed, 1 insertion(+) diff --git a/vllm_mindspore/model_executor/models/attention_mask.py b/vllm_mindspore/model_executor/models/attention_mask.py index 9a75e1ad..4c9bac9c 100644 --- a/vllm_mindspore/model_executor/models/attention_mask.py +++ b/vllm_mindspore/model_executor/models/attention_mask.py @@ -51,6 +51,7 @@ class LowerTriangularMask: """ def __init__(self, dtype, max_model_len): + # this is debug self.dtype = dtype self.max_model_len = max_model_len prefill_mask_coeff = 1.0 if self.dtype == mstype.bfloat16 else -10000.0 -- Gitee From 95f5596a17cad5e3cc9f273bc5e425a8ef1f69a7 Mon Sep 17 00:00:00 2001 From: uh Date: Thu, 7 Aug 2025 22:31:26 +0800 Subject: [PATCH 2/2] dev --- tests/st/python/test_cases_parallel.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/st/python/test_cases_parallel.py b/tests/st/python/test_cases_parallel.py index a7b9f696..312a2844 100644 --- a/tests/st/python/test_cases_parallel.py +++ b/tests/st/python/test_cases_parallel.py @@ -50,6 +50,7 @@ def run_tasks(cases): check_results(commands, results) +@pytest.mark.skip(reason="skip") @pytest.mark.level0 @pytest.mark.platform_arm_ascend910b_training @pytest.mark.env_single @@ -72,6 +73,7 @@ def test_cases_parallel_part0(): run_tasks(cases) +@pytest.mark.skip(reason="skip") @pytest.mark.level0 @pytest.mark.platform_arm_ascend910b_training @pytest.mark.env_single @@ -97,6 +99,7 @@ def test_cases_parallel_part1(): run_tasks(cases) +@pytest.mark.skip(reason="skip") @pytest.mark.level0 @pytest.mark.platform_arm_ascend910b_training @pytest.mark.env_single @@ -115,6 +118,7 @@ def test_cases_parallel_part2(): run_tasks(cases) +@pytest.mark.skip(reason="skip") @pytest.mark.level0 @pytest.mark.platform_arm_ascend910b_training @pytest.mark.env_single @@ -138,6 +142,7 @@ def test_cases_parallel_part3(): run_tasks(cases) +@pytest.mark.skip(reason="skip") @pytest.mark.level0 @pytest.mark.platform_arm_ascend910b_training @pytest.mark.env_single @@ -161,6 +166,7 @@ def test_cases_parallel_part4(): run_tasks(cases) +@pytest.mark.skip(reason="skip") @pytest.mark.level0 @pytest.mark.platform_arm_ascend910b_training @pytest.mark.env_single @@ -182,7 +188,7 @@ def test_cases_parallel_part5(): "vllm_llama3_8b_test_vllm_llama3.log")] run_tasks(cases) - +@pytest.mark.skip(reason="skip") @pytest.mark.level0 @pytest.mark.platform_arm_ascend910b_training @pytest.mark.env_single -- Gitee