Files
composable_kernel/test/batched_gemm/CMakeLists.txt
2025-06-24 15:21:28 +00:00

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()