mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-07-16 08:44:55 +00:00
* Initial implementation GEMM+Reduce: - device struct - epilogue struct * Fix tests, improve profiler and add initial instances * Add instances * Fix compilation error * Address review comments * Fix logging --------- Co-authored-by: Illia Silin <98187287+illsilin@users.noreply.github.com>
7 lines
241 B
CMake
7 lines
241 B
CMake
if(GPU_TARGETS MATCHES "gfx9|gfx11|gfx12")
|
|
add_test_executable(test_gemm_reduce_fp16 gemm_reduce_fp16.cpp)
|
|
if(result EQUAL 0)
|
|
target_link_libraries(test_gemm_reduce_fp16 PRIVATE utility device_gemm_reduce_instance)
|
|
endif()
|
|
endif()
|