mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-20 04:49:54 +00:00
Co-authored-by: Eisuke Kawashima <e-kwsm@users.noreply.github.com>
[ROCm/composable_kernel commit: 4e586ca958]
30 lines
1.3 KiB
CMake
30 lines
1.3 KiB
CMake
add_gtest_executable(test_gemm_universal_wmma_fp16 test_gemm_universal_wmma_fp16.cpp)
|
|
if(result EQUAL 0)
|
|
target_link_libraries(test_gemm_universal_wmma_fp16 PRIVATE utility device_gemm_universal_instance)
|
|
endif()
|
|
|
|
add_gtest_executable(test_gemm_universal_wmma_bf16 test_gemm_universal_wmma_bf16.cpp)
|
|
if(result EQUAL 0)
|
|
target_link_libraries(test_gemm_universal_wmma_bf16 PRIVATE utility device_gemm_universal_instance)
|
|
endif()
|
|
|
|
add_gtest_executable(test_gemm_universal_wmma_fp8 test_gemm_universal_wmma_fp8.cpp)
|
|
if(result EQUAL 0)
|
|
target_link_libraries(test_gemm_universal_wmma_fp8 PRIVATE utility device_gemm_universal_instance)
|
|
endif()
|
|
|
|
add_gtest_executable(test_gemm_universal_xdl_fp16 test_gemm_universal_xdl_fp16.cpp)
|
|
if(result EQUAL 0)
|
|
target_link_libraries(test_gemm_universal_xdl_fp16 PRIVATE utility device_gemm_universal_instance)
|
|
endif()
|
|
|
|
add_gtest_executable(test_gemm_universal_xdl_fp8 test_gemm_universal_xdl_fp8.cpp)
|
|
if(result EQUAL 0)
|
|
target_link_libraries(test_gemm_universal_xdl_fp8 PRIVATE utility device_gemm_universal_instance)
|
|
endif()
|
|
|
|
add_gtest_executable(test_gemm_universal_xdl_bf16 test_gemm_universal_xdl_bf16.cpp)
|
|
if(result EQUAL 0)
|
|
target_link_libraries(test_gemm_universal_xdl_bf16 PRIVATE utility device_gemm_universal_instance)
|
|
endif()
|