mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-04-19 22:39:03 +00:00
* chore(copyright) update library wide CMakeLists.txt files copyright header template * Fix build --------- Co-authored-by: Sami Remes <samremes@amd.com>
9 lines
396 B
CMake
9 lines
396 B
CMake
# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
add_gtest_executable(test_reduce_no_index reduce_no_index.cpp)
|
|
add_gtest_executable(test_reduce_with_index reduce_with_index.cpp)
|
|
target_link_libraries(test_reduce_no_index PRIVATE utility device_reduce_instance)
|
|
target_link_libraries(test_reduce_with_index PRIVATE utility device_reduce_instance)
|
|
|