mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-20 12:59:49 +00:00
10 lines
384 B
CMake
10 lines
384 B
CMake
add_gtest_executable(test_batched_gemm_xdl test_batched_gemm_xdl.cpp)
|
|
if(result EQUAL 0)
|
|
target_link_libraries(test_batched_gemm_xdl PRIVATE utility device_batched_gemm_instance)
|
|
endif()
|
|
|
|
add_gtest_executable(test_batched_gemm_wmma test_batched_gemm_wmma.cpp)
|
|
if(result EQUAL 0)
|
|
target_link_libraries(test_batched_gemm_wmma PRIVATE utility device_batched_gemm_instance)
|
|
endif()
|