mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-03 05:01:25 +00:00
* chore(copyright) update library wide CMakeLists.txt files copyright header template * Fix build --------- Co-authored-by: Sami Remes <samremes@amd.com>
11 lines
319 B
CMake
11 lines
319 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_ck_tile_reduce2d test_reduce2d.cpp)
|
|
if(result EQUAL 0)
|
|
target_link_libraries(test_ck_tile_reduce2d PRIVATE utility)
|
|
endif()
|
|
endif()
|
|
|