Skip to content

Commit 81d1f4f

Browse files
authored
Fix script options for engines. (#3622)
Signed-off-by: Tracin <[email protected]>
1 parent 8a8a55a commit 81d1f4f

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

tests/integration/defs/examples/test_llama.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4249,7 +4249,7 @@ def test_llm_llama_v3_1_1node_multi_gpus(llama_example_root, llama_model_root,
42494249
mmlu_cmd = generate_mmlu_cmd(example_root=llama_example_root,
42504250
data_dir=mmlu_dataset_root,
42514251
engine_dir=engine_dir,
4252-
tokenizer_dir=llama_model_root,
4252+
hf_model_dir=llama_model_root,
42534253
enable_chunked_prefill=True)
42544254
venv_check_call(llm_venv, mmlu_cmd)
42554255

@@ -4361,7 +4361,7 @@ def test_llm_llama_v3_1_2nodes_8gpus(test_type, llama_example_root,
43614361
mmlu_cmd = generate_mmlu_cmd(example_root=llama_example_root,
43624362
data_dir=mmlu_dataset_root,
43634363
engine_dir=engine_dir,
4364-
tokenizer_dir=llama_model_root,
4364+
hf_model_dir=llama_model_root,
43654365
enable_chunked_prefill=True)
43664366
venv_check_call(llm_venv, mmlu_cmd)
43674367

tests/integration/defs/examples/test_mixtral.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def test_llm_mixtral_fp8_4gpus_summary(llama_example_root,
182182

183183
print("Run mmlu...")
184184
mmlu_cmd = generate_mmlu_cmd(llama_example_root,
185-
tokenizer_dir=llm_mixtral_model_root,
185+
hf_model_dir=llm_mixtral_model_root,
186186
engine_dir=engine_dir,
187187
accuracy_threshold=70,
188188
data_dir=f"{llm_datasets_root}/mmlu")
@@ -247,7 +247,7 @@ def test_llm_mixtral_fp8_managed_weights_4gpus_summary(llama_example_root,
247247

248248
print("Run mmlu...")
249249
mmlu_cmd = generate_mmlu_cmd(llama_example_root,
250-
tokenizer_dir=llm_mixtral_model_root,
250+
hf_model_dir=llm_mixtral_model_root,
251251
engine_dir=engine_dir,
252252
accuracy_threshold=70,
253253
data_dir=f"{llm_datasets_root}/mmlu")

tests/integration/test_lists/waives.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,6 @@ examples/test_gpt.py::test_llm_gpt2_santacoder_1node_4gpus[parallel_build-enable
417417
examples/test_llama.py::test_llm_llama_v3_1_1node_multi_gpus[enable_gemm_allreduce_plugin-llama-3.1-405b-enable_fp8] SKIP (https://nvbugs/5219532)
418418
examples/test_llama.py::test_llm_llama_v3_1_1node_multi_gpus[enable_gemm_allreduce_plugin-llama-3.1-405b-fp8-disable_fp8] SKIP (https://nvbugs/5219532)
419419
examples/test_llama.py::test_llm_llama_v3_1_1node_multi_gpus[disable_gemm_allreduce_plugin-llama-3.1-70b-enable_fp8] SKIP (https://nvbugs/5219532)
420-
examples/test_llama.py::test_llm_llama_v3_1_1node_multi_gpus[enable_gemm_allreduce_plugin-llama-3.1-70b-disable_fp8] SKIP (https://nvbugs/5219533)
421420
examples/test_medusa.py::test_llama_medusa_1gpu[llama-v2-7b-hf] SKIP (https://nvbugs/5219534)
422421
examples/test_medusa.py::test_llama_medusa_1gpu[llama-3.2-1b] SKIP (https://nvbugs/5219534)
423422
examples/test_medusa.py::test_llama_medusa_1gpu[llama-3.1-8b] SKIP (https://nvbugs/5219534)
@@ -431,7 +430,6 @@ examples/test_eagle.py::test_llama_eagle_1gpu[llama-3.1-8b-eagle1] SKIP (https:/
431430
examples/test_eagle.py::test_mistral_eagle_1gpu[mistral-7b-v0.1-eagle1] SKIP (https://nvbugs/5219535)
432431
examples/test_eagle.py::test_llama_eagle_1gpu[llama-3.1-8b-eagle2] SKIP (https://nvbugs/5219535)
433432
examples/test_eagle.py::test_mistral_eagle_1gpu[mistral-7b-v0.1-eagle2] SKIP (https://nvbugs/5219535)
434-
examples/test_mixtral.py::test_llm_mixtral_fp8_4gpus_summary[Mixtral-8x22B-v0.1-nb:1] SKIP (https://nvbugs/5220758)
435433
examples/test_multimodal.py::test_llm_multimodal_general[VILA1.5-3b-pp:1-tp:1-float16-bs:8-cpp_e2e:False-nb:1] SKIP (https://nvbugs/5214239)
436434
examples/test_multimodal.py::test_llm_multimodal_general[VILA1.5-3b-pp:1-tp:1-float16-bs:1-cpp_e2e:True-nb:1] SKIP (https://nvbugs/5214239)
437435
examples/test_multimodal.py::test_llm_multimodal_general[VILA1.5-3b-pp:1-tp:1-float16-bs:8-cpp_e2e:True-nb:1] SKIP (https://nvbugs/5214239)

0 commit comments

Comments
 (0)