mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-04 05:31:24 +00:00
17 lines
458 B
CMake
17 lines
458 B
CMake
# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
set(TARGET_NAME example_mhc)
|
|
add_executable(${TARGET_NAME} mhc.cpp)
|
|
|
|
set(TARGET_NAME example_mhc_v3)
|
|
add_executable(${TARGET_NAME} mhc_v3.cpp)
|
|
|
|
set(TARGET_NAME example_mhc_v3_single_block_test)
|
|
add_executable(${TARGET_NAME} mhc_v3_single_block_test.cpp)
|
|
|
|
set(TARGET_NAME example_mhc_v3_two_block_test)
|
|
add_executable(${TARGET_NAME} mhc_v3_two_block_test.cpp)
|
|
|
|
|