mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-21 13:29:20 +00:00
* Add blockwise gemm to ck wrapper
* Add blockwise gemm traits
* Disable test_gemm for non xdl devices
* Fixes
* Add c layout descritpions
[ROCm/composable_kernel commit: f3b6c23ac5]
15 lines
685 B
CMake
15 lines
685 B
CMake
add_gtest_executable(test_layout test_layout.cpp)
|
|
target_link_libraries(test_layout PRIVATE utility)
|
|
add_gtest_executable(test_tensor test_tensor.cpp)
|
|
target_link_libraries(test_tensor PRIVATE utility)
|
|
add_gtest_executable(test_copy test_copy.cpp)
|
|
target_link_libraries(test_copy PRIVATE utility)
|
|
add_gtest_executable(test_partition test_partition.cpp)
|
|
target_link_libraries(test_partition PRIVATE utility)
|
|
if(GPU_TARGETS MATCHES "gfx908" OR GPU_TARGETS MATCHES "gfx90a" OR
|
|
GPU_TARGETS MATCHES "gfx940" OR GPU_TARGETS MATCHES "gfx941" OR
|
|
GPU_TARGETS MATCHES "gfx942")
|
|
add_gtest_executable(test_gemm test_gemm.cpp)
|
|
target_link_libraries(test_gemm PRIVATE utility)
|
|
endif()
|