mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-19 04:19:36 +00:00
* Add tests for gemm_bias_add_reduce
* Initial working implementation
* Generalize implementation of reduce epilogue
* Add tests for all layouts
* Add instances
* Fix test archs
* Fix xdl bug
* Remove library/profiler duplications
* Fix num_byted error profiler
* Fix typos
* Fix copyright
[ROCm/composable_kernel commit: aad4cf0985]
10 lines
390 B
CMake
10 lines
390 B
CMake
# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
if(GPU_TARGETS MATCHES "gfx9|gfx11|gfx12")
|
|
add_gtest_executable(test_gemm_bias_add_reduce_fp16 test_gemm_bias_add_reduce_fp16.cpp)
|
|
if(result EQUAL 0)
|
|
target_link_libraries(test_gemm_bias_add_reduce_fp16 PRIVATE utility device_gemm_bias_add_reduce_instance)
|
|
endif()
|
|
endif()
|