Skip to content
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
7f5e5ce
first test version
phlrain May 26, 2021
e5fa5d0
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
phlrain May 26, 2021
96a39cc
add test exec;
phlrain May 26, 2021
1b7fe5e
add data transfer; test=develop
phlrain Jun 7, 2021
3d769b9
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
phlrain Jun 7, 2021
6ee54b4
add new exec head;
phlrain Jun 7, 2021
2d6bda5
add memcpy; test=develop
phlrain Jun 8, 2021
abd3fa4
add python fetch
phlrain Jun 11, 2021
e508460
add new test
phlrain Jun 11, 2021
bc8a804
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
phlrain Jun 11, 2021
6f3fd37
add graph node; test=develop
phlrain Jul 27, 2021
00d04bc
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
phlrain Jul 27, 2021
41713fc
remove useless new executor test; test=develop
phlrain Jul 27, 2021
ff22008
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
phlrain Jul 27, 2021
c8b80b9
remove gperf dependency; test=develop
phlrain Jul 27, 2021
5611a1c
fix compile bugs; test=develop
phlrain Jul 27, 2021
acb260a
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
phlrain Jul 27, 2021
916531d
remove useless code; test=develop
phlrain Jul 28, 2021
55e9e2a
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
phlrain Jul 28, 2021
59a3257
remove useless code; test=develop
phlrain Jul 28, 2021
c302f2e
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
phlrain Jul 28, 2021
fb7b649
add uni test; test=develop
phlrain Jul 30, 2021
35db862
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
phlrain Jul 30, 2021
07267b5
polish code; test=develop
phlrain Aug 2, 2021
ca7f651
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
phlrain Aug 2, 2021
28a4e83
polish code; test=develop
phlrain Aug 2, 2021
52f0813
add interpreter cmakefile; test=develop
phlrain Aug 4, 2021
8696733
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
phlrain Aug 4, 2021
ee6a1de
remove useless code; test=develop
phlrain Aug 4, 2021
1b7036e
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
phlrain Aug 4, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions paddle/fluid/framework/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,9 @@ else()
cc_test(custom_tensor_test SRCS custom_tensor_test.cc DEPS custom_tensor glog)
endif()

#cc_binary(test_executor SRCS test_executor.cc DEPS executor op_registry ${GLOB_OP_LIB} ${GLOB_OPERATOR_DEPS} )
#cc_binary(new_executor SRCS new_exec_test.cc DEPS operator op_registry executor ${GLOB_OP_LIB} ${GLOB_OPERATOR_DEPS} profiler)

set(FLUID_FRAMEWORK_MODULES proto_desc memory lod_tensor executor data_feed_proto layer dynamic_loader custom_operator)

cc_library(paddle_framework DEPS ${FLUID_FRAMEWORK_MODULES})
Expand Down
Loading