Skip to content

Commit 3463b6c

Browse files
committed
skip TestLlama3_3_70BInstruct on CG4
Signed-off-by: Xin He (SW-GPU) <[email protected]>
1 parent eded366 commit 3463b6c

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

tests/integration/defs/accuracy/test_llm_api_pytorch.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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)
342343
class 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:

tests/integration/defs/conftest.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
18951899
skip_device_contain_gb200 = pytest.mark.skipif(
18961900
check_device_contain(["GB200"]),
18971901
reason="This test is not supported on GB200 or GB100")

tests/integration/defs/examples/test_bert.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,13 @@
1515
"""Module test_bert test bert examples."""
1616
import pytest
1717
from 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)
1920
from 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(

tests/integration/defs/examples/test_bindings.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,12 @@
1818

1919
import pytest
2020
from 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
2222
from 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")
2629
def bindings_example_root(llm_root):

0 commit comments

Comments
 (0)