Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tests/integration/defs/accuracy/test_cli_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ def test_fp8_prequantized(self, mocker):


# TODO: Remove the CLI tests once NIMs use PyTorch backend
@pytest.mark.timeout(5400)
class TestLlama3_3NemotronSuper49Bv1(CliFlowAccuracyTestHarness):
MODEL_NAME = "nvidia/Llama-3_3-Nemotron-Super-49B-v1"
MODEL_PATH = f"{llm_models_root()}/nemotron-nas/Llama-3_3-Nemotron-Super-49B-v1"
Expand Down
1 change: 1 addition & 0 deletions tests/integration/defs/accuracy/test_llm_api_pytorch.py
Original file line number Diff line number Diff line change
Expand Up @@ -1106,6 +1106,7 @@ def test_auto_dtype_tp8(self):
task.evaluate(llm)


@pytest.mark.timeout(5400)
@pytest.mark.skip_less_device_memory(80000)
class TestLlama3_3NemotronSuper49Bv1(LlmapiAccuracyTestHarness):
MODEL_NAME = "nvidia/Llama-3_3-Nemotron-Super-49B-v1"
Expand Down
23 changes: 16 additions & 7 deletions tests/integration/defs/test_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -1682,10 +1682,12 @@ def test_ptp_quickstart_advanced_ngram(llm_root, llm_venv, model_name,
@pytest.mark.skip_less_device_memory(80000)
@pytest.mark.skip_less_device(8)
@skip_pre_hopper
@skip_post_blackwell
@pytest.mark.parametrize("model_path", ['DeepSeek-V3'])
def test_ptp_quickstart_advanced_deepseek_v3_2nodes_8gpus(
llm_root, llm_venv, model_path):
@pytest.mark.parametrize("model_path", [
pytest.param('DeepSeek-V3', marks=skip_post_blackwell),
pytest.param('DeepSeek-R1/DeepSeek-R1-0528-FP4', marks=skip_pre_blackwell),
])
def test_ptp_quickstart_advanced_deepseek_multi_nodes(llm_root, llm_venv,
model_path):
# "RCCA https://nvbugs/5163844"
print(f"Testing {model_path}.")
example_root = Path(os.path.join(llm_root, "examples", "pytorch"))
Expand Down Expand Up @@ -2195,19 +2197,26 @@ def test_ptp_scaffolding(llm_root, llm_venv, model_name, model_path):
@pytest.mark.skip_less_device(4)
@pytest.mark.parametrize("model_path", [
pytest.param('llama-3.3-models/Llama-3.3-70B-Instruct',
marks=(skip_pre_hopper, pytest.mark.timeout(5400))),
pytest.param('llama4-models/Llama-4-Maverick-17B-128E-Instruct',
marks=skip_pre_hopper),
pytest.param('Llama-4-Maverick-17B-128E-Instruct', marks=skip_pre_hopper),
])
def test_ptp_quickstart_advanced_llama_2nodes(llm_root, llm_venv, model_path):
def test_ptp_quickstart_advanced_llama_multi_nodes(llm_root, llm_venv,
model_path):
print(f"Testing {model_path}.")
tp_size, pp_size = 16, 1
if "Llama-4" in model_path:
tp_size, pp_size = 8, 2

example_root = Path(os.path.join(llm_root, "examples", "pytorch"))
run_cmd = [
"trtllm-llmapi-launch",
"python3",
str(example_root / "quickstart_advanced.py"),
f"--model_dir={llm_models_root()}/{model_path}",
"--moe_ep_size=8",
"--tp_size=16",
f"--tp_size={tp_size}",
f"--pp_size={pp_size}",
"--use_cuda_graph",
f"--kv_cache_fraction={_MEM_FRACTION_50}",
"--max_batch_size=32",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ examples/test_llama.py::test_llm_llama_v3_1_2nodes_8gpus[llama-3.1-8b-disable_fp
examples/test_llama.py::test_llm_llama_v3_1_2nodes_8gpus[llama-3.1-8b-disable_fp8-tp16pp1-infer]
examples/test_mixtral.py::test_llm_mixtral_2nodes_8gpus[Mixtral-8x22B-v0.1-plugin-renormalize-tensor_parallel-build]
examples/test_mixtral.py::test_llm_mixtral_2nodes_8gpus[Mixtral-8x22B-v0.1-plugin-renormalize-tensor_parallel-infer]
test_e2e.py::test_ptp_quickstart_advanced_deepseek_v3_2nodes_8gpus[DeepSeek-V3]
test_e2e.py::test_ptp_quickstart_advanced_llama_2nodes[llama-3.3-models/Llama-3.3-70B-Instruct]
test_e2e.py::test_ptp_quickstart_advanced_deepseek_multi_nodes[DeepSeek-V3]
test_e2e.py::test_ptp_quickstart_advanced_deepseek_multi_nodes[DeepSeek-R1/DeepSeek-R1-0528-FP4]
test_e2e.py::test_ptp_quickstart_advanced_llama_multi_nodes[llama-3.3-models/Llama-3.3-70B-Instruct]
test_e2e.py::test_ptp_quickstart_advanced_llama_multi_nodes[llama4-models/Llama-4-Maverick-17B-128E-Instruct]
test_e2e.py::test_openai_multinodes_chat_tp16pp1
1 change: 1 addition & 0 deletions tests/integration/test_lists/waives.txt
Original file line number Diff line number Diff line change
Expand Up @@ -434,3 +434,4 @@ accuracy/test_cli_flow.py::TestGpt2::test_weight_streaming_ootb SKIP (https://nv
accuracy/test_llm_api_pytorch.py::TestDeepSeekV3Lite::test_fp8_block_scales_4gpus[tp4-mtp_nextn=0-fp8kv=True-attention_dp=True-cuda_graph=True-overlap_scheduler=True-torch_compile=False] SKIP (https://nvbugs/5345215)
triton_server/test_triton.py::test_gpt_ib[gpt-ib] SKIP (https://nvbugs/5348963)
unittest/llmapi/test_llm_multi_gpu.py -m "gpu4 and part0" SKIP (https://nvbugs/5348958)
full:B200/test_e2e.py::test_ptp_quickstart_advanced_deepseek_multi_nodes[DeepSeek-R1/DeepSeek-R1-0528-FP4] SKIP (https://nvbugs/5344688)