Temporarily disable MX FP4 device tests (#2112)

[ROCm/composable_kernel commit: 416e851584]
This commit is contained in:
Rostyslav Geyyer
2025-04-22 16:08:48 -05:00
committed by GitHub
parent 79b01b0824
commit 9a8af1c82a
2 changed files with 5 additions and 0 deletions

View File

@@ -244,6 +244,9 @@
// workaround: compiler issue on gfx950
#define CK_WORKAROUND_FP32_TO_FP4_SR_CONVERSION 1
// workaround: compiler issue on gfx950
#define CK_TEMP_DISABLE_FP4_TESTS 1
// workaround: compiler issue on gfx950
#define CK_WORKAROUND_FP16_TO_FP8_CONVERSION 1

View File

@@ -240,6 +240,7 @@ TEST(MXFP4, HostScaledConvert)
EXPECT_EQ(test_size, i);
}
#if !CK_TEMP_DISABLE_FP4_TESTS
__global__ void test_mx_fp4_device_scaled_convert(uint64_t N, float* p_test, uint64_t* p_completed)
{
test_mx_fp4_scaled_convert(N, p_test, p_completed);
@@ -539,3 +540,4 @@ TEST(MXFP4, DeviceF4x32ToF32x32ScaledConvert)
EXPECT_EQ(N, completed);
EXPECT_EQ(N, i);
}
#endif // CK_TEMP_DISABLE_FP4_TESTS