mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-04-20 06:49:15 +00:00
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.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user