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 7859887 commit 67c5113Copy full SHA for 67c5113
tests/e2e/multicard/test_torchair_graph_mode.py
@@ -99,3 +99,19 @@ def test_e2e_deepseekv3_with_torchair_ms_mla():
99
},
100
}
101
_deepseek_torchair_test_fixture(additional_config)
102
+
103
104
+@pytest.mark.skipif(os.getenv("VLLM_USE_V1") == "0",
105
+ reason="torchair graph is not supported on v0")
106
+def test_e2e_deepseekv3_with_torchair_ms_moe():
107
+ additional_config = {
108
+ "torchair_graph_config": {
109
+ "enabled": True,
110
+ "enable_multistream_moe": True,
111
+ },
112
+ "ascend_scheduler_config": {
113
114
115
+ "refresh": True,
116
+ }
117
+ _deepseek_torchair_test_fixture(additional_config)
0 commit comments