diff --git a/tests/integration/defs/accuracy/test_llm_api_pytorch_multimodal.py b/tests/integration/defs/accuracy/test_llm_api_pytorch_multimodal.py index 1a96048b932..ef645b704b7 100644 --- a/tests/integration/defs/accuracy/test_llm_api_pytorch_multimodal.py +++ b/tests/integration/defs/accuracy/test_llm_api_pytorch_multimodal.py @@ -3,7 +3,7 @@ from tensorrt_llm import LLM from tensorrt_llm.llmapi import CudaGraphConfig, KvCacheConfig, MoeConfig, SamplingParams -from ..conftest import llm_models_root, skip_pre_blackwell +from ..conftest import llm_models_root, skip_post_blackwell, skip_pre_blackwell, skip_pre_hopper from .accuracy_core import MMMU, LlmapiAccuracyTestHarness @@ -216,6 +216,8 @@ def test_auto_dtype(self): task.evaluate(llm, sampling_params=self.sampling_params) +@skip_pre_hopper +@skip_post_blackwell class TestGemma3_27BInstruct(LlmapiAccuracyTestHarness): MODEL_NAME = "google/gemma-3-27b-it" MODEL_PATH = f"{llm_models_root()}/gemma/gemma-3-27b-it/"