[AMD] Fix AMD Multimodal Test - skip nvfp4 tests (#23045)

This commit is contained in:
YC Yen-Ching Tseng
2026-04-17 09:02:39 -07:00
committed by GitHub
parent 2bac219d0c
commit 5d4e899477
@@ -361,6 +361,11 @@ if not current_platform.is_hip():
T2V_sampling_params, T2V_sampling_params,
) )
) )
# Skip all ModelOpt tests on AMD: FP8 requires torch._scaled_mm (HIPBLAS_STATUS_NOT_SUPPORTED
# on ROCm), NVFP4 requires flashinfer or sgl_kernel FP4 kernels (CUDA-only)
if current_platform.is_hip():
ONE_GPU_CASES_C = []
else:
ONE_GPU_CASES_C = [ ONE_GPU_CASES_C = [
_make_modelopt_ci_case( _make_modelopt_ci_case(
"flux1_modelopt_fp8_t2i", "flux1_modelopt_fp8_t2i",