Skip to content

Commit 007a822

Browse files
committed
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into nested-namespace-part-1
2 parents 83052c3 + 6dd6447 commit 007a822

File tree

82 files changed

+356
-6732
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+356
-6732
lines changed

paddle/fluid/distributed/ps/table/common_graph_table.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3467,7 +3467,7 @@ int32_t GraphTable::Initialize(const GraphParameter &graph) {
34673467
<< ", graph_edges_split_only_by_src_id="
34683468
<< FLAGS_graph_edges_split_only_by_src_id;
34693469
feat_id_map.resize(node_types.size());
3470-
for (int k = 0; k < edge_types.size(); k++) {
3470+
for (int k = 0; k < edge_types.size(); k++) { // NOLINT
34713471
VLOG(0) << "in initialize: get a edge_type " << edge_types[k];
34723472
edge_to_id[edge_types[k]] = k;
34733473
id_to_edge.push_back(edge_types[k]);

paddle/fluid/framework/CMakeLists.txt

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -882,21 +882,22 @@ target_link_libraries(
882882
conditional_block_op_helper
883883
pylayer_op_helper)
884884

885-
cc_library(
886-
parallel_executor
887-
SRCS parallel_executor.cc
888-
DEPS ssa_graph_executor graph build_strategy collective_helper
889-
variable_helper)
890-
891885
cc_library(
892886
compiled_program
893887
SRCS compiled_program.cc
894-
DEPS graph build_strategy)
888+
DEPS graph
889+
build_strategy
890+
reference_count_pass
891+
eager_deletion_pass
892+
buffer_shared_inplace_op_pass
893+
buffer_shared_cross_op_memory_reuse_pass
894+
inplace_addto_op_pass
895+
set_reader_device_info_utils)
895896

896897
cc_library(
897898
executor_cache
898899
SRCS executor_cache.cc
899-
DEPS parallel_executor pir_transforms pir)
900+
DEPS pir_transforms pir)
900901
cc_library(
901902
prune
902903
SRCS prune.cc
@@ -962,7 +963,8 @@ cc_library(
962963
phi
963964
common
964965
imperative_flag
965-
layer)
966+
layer
967+
op_dialect_vjp)
966968

967969
cc_library(
968970
type_info

paddle/fluid/framework/details/CMakeLists.txt

Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,6 @@ if(WITH_PSCORE)
77
endif()
88
set_source_files_properties(
99
reduce_op_handle.cc PROPERTIES COMPILE_FLAGS ${DISTRIBUTE_COMPILE_FLAGS})
10-
set_source_files_properties(
11-
threaded_ssa_graph_executor.cc PROPERTIES COMPILE_FLAGS
12-
${DISTRIBUTE_COMPILE_FLAGS})
13-
set_source_files_properties(
14-
async_ssa_graph_executor.cc PROPERTIES COMPILE_FLAGS
15-
${DISTRIBUTE_COMPILE_FLAGS})
1610
endif()
1711

1812
set(op_handle_srcs
@@ -81,36 +75,6 @@ endif()
8175

8276
add_dependencies(detail_op_handle framework_proto auto_parallel_proto xxhash)
8377

84-
set(ssa_graph_executor_srcs
85-
ssa_graph_executor.cc
86-
threaded_ssa_graph_executor.cc
87-
parallel_ssa_graph_executor.cc
88-
async_ssa_graph_executor.cc
89-
bind_threaded_ssa_graph_executor.cc
90-
fast_threaded_ssa_graph_executor.cc
91-
scope_buffered_ssa_graph_executor.cc
92-
scope_buffered_monitor.cc)
93-
set(SSA_GRAPH_EXECUTOR_DEPS
94-
graph
95-
framework_proto
96-
detail_op_handle
97-
reference_count_pass
98-
eager_deletion_pass
99-
buffer_shared_inplace_op_pass
100-
buffer_shared_cross_op_memory_reuse_pass
101-
inplace_addto_op_pass
102-
set_reader_device_info_utils
103-
scope
104-
simple_threadpool
105-
device_context
106-
profiler
107-
selected_rows_utils)
108-
109-
cc_library(
110-
ssa_graph_executor
111-
SRCS ${ssa_graph_executor_srcs}
112-
DEPS ${SSA_GRAPH_EXECUTOR_DEPS})
113-
11478
set(IR_PASS_DEPS
11579
graph_viz_pass
11680
multi_devices_graph_pass

paddle/fluid/framework/details/async_ssa_graph_executor.cc

Lines changed: 0 additions & 208 deletions
This file was deleted.

paddle/fluid/framework/details/async_ssa_graph_executor.h

Lines changed: 0 additions & 68 deletions
This file was deleted.

0 commit comments

Comments
 (0)