We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a4db6e commit b133d45Copy full SHA for b133d45
tests/multicard/test_data_parallel.py
@@ -25,10 +25,13 @@
25
26
from tests.conftest import VllmRunner
27
from tests.model_utils import check_outputs_equal
28
+from vllm_ascend.utils import vllm_version_is
29
30
MODELS = ["Qwen/Qwen2.5-0.5B-Instruct"]
31
32
33
+@pytest.mark.skipif(vllm_version_is("0.9.0"),
34
+ reason="Data parallel only support on >= 0.9.1")
35
@pytest.mark.skipif(os.getenv("VLLM_USE_V1") == "0",
36
reason="Data parallel only support on v1")
37
@pytest.mark.parametrize("model", MODELS)
0 commit comments