Files
2026-07-13 12:40:42 +08:00

37 lines
730 B
CMake

cc_test(
selected_rows_functor_test
SRCS selected_rows_functor_test.cc
DEPS phi common)
cc_test(
im2col_test
SRCS im2col_test.cc
DEPS phi common)
cc_test(
vol2col_test
SRCS vol2col_test.cc
DEPS phi common)
cc_test(
beam_search_test
SRCS beam_search_test.cc
DEPS phi common)
if(WITH_GPU)
nv_test(
selected_rows_functor_gpu_test
SRCS selected_rows_functor_test.cu.cc
DEPS phi common)
endif()
if(WITH_ROCM)
hip_test(
selected_rows_functor_gpu_test
SRCS selected_rows_functor_test.cu.cc
DEPS phi common)
endif()
cc_test(
concat_test
SRCS concat_test.cc
DEPS phi common)
if(WITH_TESTING AND TEST im2col_test)
set_tests_properties(im2col_test PROPERTIES TIMEOUT 120)
endif()