@@ -3032,10 +3032,12 @@ def forward(
30323032
30333033@pytest .mark .ir
30343034@pytest .mark .flaky (reruns = 3 )
3035- @pytest .mark .skip (reason = (
3036- "transform_with_custom_compression_ops has been deprecated. Consider removing "
3037- "these tests or use an alternative way to generate quantized weights"
3038- ))
3035+ @pytest .mark .skip (
3036+ reason = (
3037+ "transform_with_custom_compression_ops has been deprecated. Consider removing "
3038+ "these tests or use an alternative way to generate quantized weights"
3039+ )
3040+ )
30393041def test_externalize_rms_norm_with_quantized_linears_ir () -> None :
30403042 """IR check: Quantized (int4) weights retain si4 dtype when externalization re-exports the model."""
30413043
@@ -3109,10 +3111,12 @@ def forward(self, x: torch.Tensor) -> torch.Tensor:
31093111
31103112
31113113@pytest .mark .flaky (reruns = 3 )
3112- @pytest .mark .skip (reason = (
3113- "transform_with_custom_compression_ops has been deprecated. Consider removing "
3114- "these tests or use an alternative way to generate quantized weights"
3115- ))
3114+ @pytest .mark .skip (
3115+ reason = (
3116+ "transform_with_custom_compression_ops has been deprecated. Consider removing "
3117+ "these tests or use an alternative way to generate quantized weights"
3118+ )
3119+ )
31163120async def test_externalize_rms_norm_with_quantized_linears () -> None :
31173121 """Quantized (int4) weights retain si4 dtype when externalization re-exports the model.
31183122
@@ -3176,10 +3180,12 @@ def forward(self, x: torch.Tensor) -> torch.Tensor:
31763180
31773181@pytest .mark .ir
31783182@pytest .mark .flaky (reruns = 3 )
3179- @pytest .mark .skip (reason = (
3180- "transform_with_custom_compression_ops has been deprecated. Consider removing "
3181- "these tests or use an alternative way to generate quantized weights"
3182- ))
3183+ @pytest .mark .skip (
3184+ reason = (
3185+ "transform_with_custom_compression_ops has been deprecated. Consider removing "
3186+ "these tests or use an alternative way to generate quantized weights"
3187+ )
3188+ )
31833189def test_externalize_gather_mm_with_quantized_rhs_ir () -> None :
31843190 """IR check: Quantized expert weight flows as rhs into an externalized GatherMM composite."""
31853191 num_experts = 4
@@ -3263,10 +3269,12 @@ def forward(self, x: torch.Tensor, indices: torch.Tensor) -> torch.Tensor:
32633269
32643270
32653271@pytest .mark .flaky (reruns = 3 )
3266- @pytest .mark .skip (reason = (
3267- "transform_with_custom_compression_ops has been deprecated. Consider removing "
3268- "these tests or use an alternative way to generate quantized weights"
3269- ))
3272+ @pytest .mark .skip (
3273+ reason = (
3274+ "transform_with_custom_compression_ops has been deprecated. Consider removing "
3275+ "these tests or use an alternative way to generate quantized weights"
3276+ )
3277+ )
32703278async def test_externalize_gather_mm_with_quantized_rhs () -> None :
32713279 """Quantized expert weight flows as rhs into an externalized GatherMM composite.
32723280
@@ -3345,10 +3353,12 @@ def forward(self, x: torch.Tensor, indices: torch.Tensor) -> torch.Tensor:
33453353
33463354@pytest .mark .ir
33473355@pytest .mark .flaky (reruns = 3 )
3348- @pytest .mark .skip (reason = (
3349- "transform_with_custom_compression_ops has been deprecated. Consider removing "
3350- "these tests or use an alternative way to generate quantized weights"
3351- ))
3356+ @pytest .mark .skip (
3357+ reason = (
3358+ "transform_with_custom_compression_ops has been deprecated. Consider removing "
3359+ "these tests or use an alternative way to generate quantized weights"
3360+ )
3361+ )
33523362def test_externalize_multiple_composites_with_quantized_weights_ir () -> None :
33533363 """IR check: Multiple composite ops (RMSNorm + SDPA) externalized with quantized linears."""
33543364 head_dim = 16
@@ -3433,10 +3443,12 @@ def forward(self, x: torch.Tensor) -> torch.Tensor:
34333443
34343444
34353445@pytest .mark .flaky (reruns = 3 )
3436- @pytest .mark .skip (reason = (
3437- "transform_with_custom_compression_ops has been deprecated. Consider removing "
3438- "these tests or use an alternative way to generate quantized weights"
3439- ))
3446+ @pytest .mark .skip (
3447+ reason = (
3448+ "transform_with_custom_compression_ops has been deprecated. Consider removing "
3449+ "these tests or use an alternative way to generate quantized weights"
3450+ )
3451+ )
34403452async def test_externalize_multiple_composites_with_quantized_weights () -> None :
34413453 """Multiple composite ops (RMSNorm + SDPA) externalized with quantized linears.
34423454
@@ -3512,10 +3524,12 @@ def forward(self, x: torch.Tensor) -> torch.Tensor:
35123524
35133525
35143526@pytest .mark .ir
3515- @pytest .mark .skip (reason = (
3516- "transform_with_custom_compression_ops has been deprecated. Consider removing "
3517- "these tests or use an alternative way to generate quantized weights"
3518- ))
3527+ @pytest .mark .skip (
3528+ reason = (
3529+ "transform_with_custom_compression_ops has been deprecated. Consider removing "
3530+ "these tests or use an alternative way to generate quantized weights"
3531+ )
3532+ )
35193533def test_externalize_gather_mm_combined_with_rms_norm_ir () -> None :
35203534 """IR check: GatherMM + RMSNorm both externalized alongside quantized weights."""
35213535 num_experts = 4
@@ -3590,10 +3604,13 @@ def forward(self, x: torch.Tensor, indices: torch.Tensor) -> torch.Tensor:
35903604 """
35913605 filecheck_pattern (ir , check_file = pattern )
35923606
3593- @pytest .mark .skip (reason = (
3594- "transform_with_custom_compression_ops has been deprecated. Consider removing "
3595- "these tests or use an alternative way to generate quantized weights"
3596- ))
3607+
3608+ @pytest .mark .skip (
3609+ reason = (
3610+ "transform_with_custom_compression_ops has been deprecated. Consider removing "
3611+ "these tests or use an alternative way to generate quantized weights"
3612+ )
3613+ )
35973614async def test_externalize_gather_mm_combined_with_rms_norm () -> None :
35983615 """GatherMM + RMSNorm both externalized alongside quantized weights.
35993616
0 commit comments