mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-04-19 14:29:05 +00:00
* chore(copyright) update library wide CMakeLists.txt files copyright header template * Fix build --------- Co-authored-by: Sami Remes <samremes@amd.com>
15 lines
772 B
CMake
15 lines
772 B
CMake
# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
add_executable(client_layernorm2d_bwd_data layernorm2d_bwd_data.cpp)
|
|
target_link_libraries(client_layernorm2d_bwd_data PRIVATE composable_kernel::device_other_operations)
|
|
|
|
add_executable(client_layernorm2d_bwd_gamma_beta layernorm2d_bwd_gamma_beta.cpp)
|
|
target_link_libraries(client_layernorm2d_bwd_gamma_beta PRIVATE composable_kernel::device_other_operations)
|
|
|
|
add_executable(client_layernorm2d_fwd layernorm2d_fwd.cpp)
|
|
target_link_libraries(client_layernorm2d_fwd PRIVATE composable_kernel::device_other_operations)
|
|
|
|
add_executable(client_layernorm4d_fwd layernorm4d_fwd.cpp)
|
|
target_link_libraries(client_layernorm4d_fwd PRIVATE composable_kernel::device_other_operations)
|