chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:40:42 +08:00
commit e25996e7db
15472 changed files with 3536181 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
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()