File tree Expand file tree Collapse file tree 4 files changed +16
-4
lines changed Expand file tree Collapse file tree 4 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -339,6 +339,7 @@ def test_fp8_prequantized(self):
339339
340340
341341@pytest .mark .timeout (7200 )
342+ @pytest .mark .skip_less_host_memory (1000000 )
342343class TestLlama3_3_70BInstruct (LlmapiAccuracyTestHarness ):
343344 MODEL_NAME = "meta-llama/Llama-3.3-70B-Instruct"
344345
@@ -355,7 +356,7 @@ def test_auto_dtype_tp8(self):
355356 extra_evaluator_kwargs = dict (apply_chat_template = True ))
356357
357358 @pytest .mark .skip_less_device (4 )
358- @pytest . mark . skip_device_not_contain ([ "H100" , "H200" , "B200" ])
359+ @skip_pre_hopper
359360 def test_fp8_tp4 (self ):
360361 model_path = f"{ llm_models_root ()} /modelopt-hf-model-hub/Llama-3.3-70B-Instruct-fp8"
361362 kv_cache_config = KvCacheConfig (free_gpu_memory_fraction = 0.6 )
@@ -372,7 +373,7 @@ def test_fp8_tp4(self):
372373 extra_evaluator_kwargs = dict (apply_chat_template = True ))
373374
374375 @pytest .mark .skip_less_device (4 )
375- @pytest . mark . skip_device_not_contain ([ "B200" ])
376+ @skip_pre_blackwell
376377 def test_nvfp4_tp4 (self ):
377378 model_path = f"{ llm_models_root ()} /modelopt-hf-model-hub/Llama-3.3-70B-Instruct-fp4"
378379 with LLM (model_path , tensor_parallel_size = 4 ) as llm :
Original file line number Diff line number Diff line change @@ -1892,6 +1892,10 @@ def check_device_contain(keyword_list):
18921892 get_sm_version () >= 100 ,
18931893 reason = "This test is not supported in post-Blackwell architecture" )
18941894
1895+ skip_post_blackwell_ultra = pytest .mark .skipif (
1896+ get_sm_version () >= 103 ,
1897+ reason = "This test is not supported in post-Blackwell-Ultra architecture" )
1898+
18951899skip_device_contain_gb200 = pytest .mark .skipif (
18961900 check_device_contain (["GB200" ]),
18971901 reason = "This test is not supported on GB200 or GB100" )
Original file line number Diff line number Diff line change 1515"""Module test_bert test bert examples."""
1616import pytest
1717from defs .common import convert_weights , venv_check_call , venv_mpi_check_call
18- from defs .conftest import get_device_count , get_sm_version
18+ from defs .conftest import (get_device_count , get_sm_version ,
19+ skip_post_blackwell_ultra )
1920from defs .trt_test_alternative import check_call
2021
22+ # skip trt flow cases on post-Blackwell-Ultra
23+ pytestmark = skip_post_blackwell_ultra
24+
2125
2226# # Build parameters
2327@pytest .mark .parametrize (
Original file line number Diff line number Diff line change 1818
1919import pytest
2020from defs .common import convert_weights , venv_check_call , venv_mpi_check_call
21- from defs .conftest import get_device_count
21+ from defs .conftest import get_device_count , skip_post_blackwell_ultra
2222from defs .trt_test_alternative import check_call
2323
24+ # skip trt flow cases on post-Blackwell-Ultra
25+ pytestmark = skip_post_blackwell_ultra
26+
2427
2528@pytest .fixture (scope = "module" )
2629def bindings_example_root (llm_root ):
You can’t perform that action at this time.
0 commit comments