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
+25
View File
@@ -0,0 +1,25 @@
if(WITH_TESTING AND NOT WIN32)
add_custom_target(
jit_download_program
COMMAND
wget -nc -q --no-check-certificate
https://paddle-ci.gz.bcebos.com/dy2st/multi_program_load_with_property.tar.gz
COMMAND tar zxf multi_program_load_with_property.tar.gz
WORKING_DIRECTORY "${CC_TESTS_DIR}")
set(JIT_DEPS
phi
common
elementwise_add_op
activation_op
reduce_mean_op
feed_op
fetch_op
generated_op
transfer_layout_op
fluid_jit
generated_static_op)
cc_test(
layer_test
SRCS layer_test.cc
DEPS ${JIT_DEPS})
endif()