mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-03-28 19:17:39 +00:00
* chore(copyright) update library wide CMakeLists.txt files copyright header template * Fix build --------- Co-authored-by: Sami Remes <samremes@amd.com>
19 lines
814 B
CMake
19 lines
814 B
CMake
# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
# Elementwise example targets 2D inputs
|
|
set(TARGET_NAME_2D_INPUT tile_example_elementwise)
|
|
add_executable(${TARGET_NAME_2D_INPUT} elementwise_example.cpp)
|
|
|
|
# Elementwise unary example targets 2D inputs
|
|
set(TARGET_NAME_2D_INPUT_UNARY tile_example_elementwise_unary)
|
|
add_executable(${TARGET_NAME_2D_INPUT_UNARY} elementwise_example_unary.cpp)
|
|
|
|
# Elementwise transpose example targets 2D inputs
|
|
set(TARGET_NAME_2D_INPUT_TRANSPOSE tile_example_elementwise_transpose)
|
|
add_executable(${TARGET_NAME_2D_INPUT_TRANSPOSE} elementwise_example_transpose.cpp)
|
|
|
|
# Elementwise example targets 4D inputs
|
|
set(TARGET_NAME_4D_INPUT tile_example_elementwise_add_4d)
|
|
add_executable(${TARGET_NAME_4D_INPUT} elementwise_example_add_4d.cpp)
|