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
734 B
CMake
15 lines
734 B
CMake
# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
add_custom_target(test_softmax)
|
|
|
|
add_gtest_executable(test_softmax_rank3 test_softmax_rank3.cpp)
|
|
add_gtest_executable(test_softmax_rank4 test_softmax_rank4.cpp)
|
|
add_gtest_executable(test_softmax_interface test_softmax_interface.cpp)
|
|
target_link_libraries(test_softmax_rank3 PRIVATE utility device_softmax_instance)
|
|
target_link_libraries(test_softmax_rank4 PRIVATE utility device_softmax_instance)
|
|
target_link_libraries(test_softmax_interface PRIVATE utility device_softmax_instance)
|
|
add_dependencies(test_softmax test_softmax_rank3)
|
|
add_dependencies(test_softmax test_softmax_rank4)
|
|
add_dependencies(test_softmax test_softmax_interface)
|