mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-15 10:37:44 +00:00
6 lines
364 B
CMake
6 lines
364 B
CMake
add_custom_target(test_elementwise_normalization)
|
|
add_gtest_executable(test_elementwise_layernorm_fp16 test_elementwise_layernorm_fp16.cpp)
|
|
if(result EQUAL 0)
|
|
target_link_libraries(test_elementwise_layernorm_fp16 PRIVATE utility device_elementwise_normalization_instance)
|
|
add_dependencies(test_elementwise_normalization test_elementwise_layernorm_fp16)
|
|
endif() |