CMakeLists.txt 393 Bytes
Newer Older
rocking5566's avatar
rocking5566 committed
1
2
3
4
add_custom_target(test_layernorm)

add_gtest_executable(test_layernorm_fp32 test_layernorm_fp32.cpp)
add_gtest_executable(test_layernorm_fp16 test_layernorm_fp16.cpp)
5
6
7
8

target_link_libraries(test_layernorm_fp32 PRIVATE utility)
target_link_libraries(test_layernorm_fp16 PRIVATE utility)

rocking5566's avatar
rocking5566 committed
9
add_dependencies(test_layernorm test_layernorm_fp32)
10
add_dependencies(test_layernorm test_layernorm_fp16)