From 87dae7bde1d1213c898330c9c41b27f009143079 Mon Sep 17 00:00:00 2001 From: Cong Ma <142121551+CongMa13@users.noreply.github.com> Date: Thu, 24 Jul 2025 10:32:06 -0600 Subject: [PATCH] [CK_TILE] Disable moe_sorting unit test on gfx908 (#2555) * [CK_TILE] Disable moe_sorting unit test on gfx908 - gfx908 does not support instruction used in moe_sorting * Update CMakeLists.txt --------- Co-authored-by: Illia Silin <98187287+illsilin@users.noreply.github.com> [ROCm/composable_kernel commit: adeaf61ee5ed87c1af3208a7516cab73f6888628] --- test/ck_tile/moe_sorting/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/ck_tile/moe_sorting/CMakeLists.txt b/test/ck_tile/moe_sorting/CMakeLists.txt index e360293878..9a7490f0c9 100644 --- a/test/ck_tile/moe_sorting/CMakeLists.txt +++ b/test/ck_tile/moe_sorting/CMakeLists.txt @@ -1,5 +1,5 @@ -# Currently ck_tile is only built on gfx9 -if(GPU_TARGETS MATCHES "gfx9") +# Currently ck_tile is only built on gfx90a, gfx942 and gfx950 +if(GPU_TARGETS MATCHES "gfx942" OR GPU_TARGETS MATCHES "gfx950" OR GPU_TARGETS MATCHES "gfx90a") add_test_executable(test_ck_tile_moe_sorting_fp32 moe_sorting_fp32.cpp moe_sorting_api.cpp) target_include_directories(test_ck_tile_moe_sorting_fp32 PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/)