Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What this PR does / why we need it?
This PR refactors the E2E multicard test suite to improve test case identification and maintainability. Specifically, it renames various test functions to be more descriptive (explicitly indicating model families like Qwen/DeepSeek and parallelism strategies like DP/TP/PP/EP) and cleans up outdated or redundant test configurations in the offline distributed inference tests.
Key Changes:
tests/e2e/multicard/to include clear suffixes/prefixes regarding the model and parallel strategy. This helps differentiate test cases in CI logs and prevents naming collisions.test_aclgraph_capture_replay.py:test_aclgraph_capture_replay_dp2->test_aclgraph_capture_replay_metrics_dp2test_data_parallel.py:test_data_parallel_inference->test_qwen_inference_dp2test_data_parallel_tp2.py:test_data_parallel_inference->test_qwen_inference_dp2_tp2test_expert_parallel.py:test_e2e_ep_correctness->test_deepseek_correctness_eptest_external_launcher.py:test_external_launcher->test_qwen_external_launchertest_moe_external_launcher->test_qwen_moe_external_launcher_eptest_external_launcher_and_sleepmode->test_qwen_external_launcher_with_sleepmodetest_external_launcher_and_sleepmode_level2->test_qwen_external_launcher_with_sleepmode_level2test_mm_allreduce->test_qwen_external_launcher_with_matmul_allreducetest_full_graph_mode.py:test_models_distributed_Qwen3_MOE_TP2_WITH_FULL_DECODE_ONLY->test_qwen_moe_with_full_decode_onlytest_models_distributed_Qwen3_MOE_TP2_WITH_FULL->test_qwen_moe_with_fulltest_fused_moe_allgather_ep.py:test_generate_with_allgather->test_deepseek_moe_fused_allgather_eptest_generate_with_alltoall->test_deepseek_moe_fused_alltoall_eptest_offline_weight_load.py:test_offline_weight_load_and_sleepmode->test_qwen_offline_weight_load_and_sleepmodetest_pipeline_parallel.py:test_models->test_models_pp2test_offline_inference_distributed.py):model list changes:
Test Function Changes:
test_models_distributed_QwQtest_models_distributed_Qwen3_W8A8test_models_distributed_Qwen3_W4A8DYNAMIC_old_versiontest_models_distributed_Qwen3_W4A8DYNAMIC_new_version->test_models_distributed_Qwen3_W4A8DYNAMICDoes this PR introduce any user-facing change?
How was this patch tested?