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>
10 lines
389 B
CMake
10 lines
389 B
CMake
# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
if(GPU_TARGETS MATCHES "gfx9")
|
|
add_gtest_executable(test_ck_tile_batched_transpose test_batched_transpose.cpp)
|
|
set_property(TARGET test_ck_tile_batched_transpose PROPERTY CXX_STANDARD 20)
|
|
else()
|
|
message(DEBUG "Skipping ck_tile batched_transpose tests for current target")
|
|
endif()
|