mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-03 13:11:25 +00:00
* chore(copyright) update library wide CMakeLists.txt files copyright header template * Fix build --------- Co-authored-by: Sami Remes <samremes@amd.com>
12 lines
615 B
CMake
12 lines
615 B
CMake
# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
add_executable(client_groupnorm_bwd_data groupnorm_bwd_data.cpp)
|
|
target_link_libraries(client_groupnorm_bwd_data PRIVATE composable_kernel::device_other_operations)
|
|
|
|
add_executable(client_groupnorm_bwd_gamma_beta groupnorm_bwd_gamma_beta.cpp)
|
|
target_link_libraries(client_groupnorm_bwd_gamma_beta PRIVATE composable_kernel::device_other_operations)
|
|
|
|
add_executable(client_groupnorm_swish_fwd groupnorm_swish_fwd.cpp)
|
|
target_link_libraries(client_groupnorm_swish_fwd PRIVATE composable_kernel::device_other_operations)
|