disable tests that take too long to build for gfx90a (#1975)

[ROCm/composable_kernel commit: d4a6d69643]
This commit is contained in:
Illia Silin
2025-03-12 17:54:03 -07:00
committed by GitHub
parent e3c5b2ae80
commit 7f849a89e3
2 changed files with 11 additions and 2 deletions

View File

@@ -1,6 +1,8 @@
# Currently ck_tile is only built on gfx9
if(GPU_TARGETS MATCHES "gfx9")
# Currently ck_tile is only built on gfx94/gfx95
if(GPU_TARGETS MATCHES "gfx94" OR GPU_TARGETS MATCHES "gfx95")
add_gtest_executable(test_ck_tile_gemm_pipeline_mem test_gemm_pipeline_mem.cpp)
add_gtest_executable(test_ck_tile_gemm_pipeline_compv3 test_gemm_pipeline_compv3.cpp)
add_gtest_executable(test_ck_tile_gemm_pipeline_compv4 test_gemm_pipeline_compv4.cpp)
else()
message("Skipping ck_tile_gemm tests for current target")
endif()