Guard a builder test to avoid gfx11 and gfx12 (#3268)

We're getting a compile error on gfx11 and gfx12 for an I8 test that doesn't have a supported WMMA implmentation. We'll need to build architecture support into the builder, but to get things green I'm just adding an ifndef guard around the test.

[ROCm/composable_kernel commit: 1bc7529977]
This commit is contained in:
John Shumway
2025-11-24 10:10:09 -08:00
committed by GitHub
parent 10eb15416c
commit 39d9acab2e

View File

@@ -9,6 +9,8 @@ namespace {
using namespace ck_tile::builder::test_utils;
// 1D I8 (channels-last) with and DEFAULT specialization
// (not supported on gfx11 and gfx12)
#if !defined(__gfx11__) && !defined(__gfx12__)
TEST(FwdConvInstances,
Create_DeviceGroupedConvFwdMultipleD_Wmma_CShuffle_Instance_1D_FP32_ChannelsFirst_scale)
{
@@ -31,5 +33,6 @@ TEST(FwdConvInstances,
run_test<Builder>(
{"DeviceGroupedConvFwdMultipleD_Wmma_CShuffle", "128, 64, 64, 64", "Default"});
}
#endif
} // namespace