add test for autodiff about forwarding func

This commit is contained in:
2024-04-24 15:22:10 +08:00
commit b51b72a7b5
20 changed files with 732 additions and 0 deletions

View File

@ -0,0 +1,9 @@
file(GLOB CPPFILES "${CMAKE_CURRENT_SOURCE_DIR}/*.cpp")
foreach(item ${CPPFILES})
get_filename_component(itemname ${item} NAME_WE)
add_executable(${itemname} ${item})
message(STATUS "add_executable(${itemname} ${item})")
# target_link_libraries(${itemname} Eigen3::Eigen)
endforeach()