diff --git a/paddle/fluid/distributed/ps/service/CMakeLists.txt b/paddle/fluid/distributed/ps/service/CMakeLists.txt index 9d87e885314166bf8c72a0f22dd84df3ecfedb60..a727cd299eb291957820f2c0ae7adafa28d80ac8 100755 --- a/paddle/fluid/distributed/ps/service/CMakeLists.txt +++ b/paddle/fluid/distributed/ps/service/CMakeLists.txt @@ -82,38 +82,35 @@ set_source_files_properties( set_source_files_properties( coordinator_client.cc PROPERTIES COMPILE_FLAGS ${DISTRIBUTE_COMPILE_FLAGS}) +set_source_files_properties( + ps_service/graph_py_service.cc PROPERTIES COMPILE_FLAGS + ${DISTRIBUTE_COMPILE_FLAGS}) cc_library( brpc_utils SRCS brpc_utils.cc DEPS tensor device_context ${COMMON_DEPS} ${RPC_DEPS}) -cc_library( - downpour_server - SRCS graph_brpc_server.cc brpc_ps_server.cc - DEPS eigen3 table brpc_utils simple_threadpool ${RPC_DEPS}) -cc_library( - downpour_client - SRCS graph_brpc_client.cc brpc_ps_client.cc ps_local_client.cc - coordinator_client.cc - DEPS eigen3 table brpc_utils simple_threadpool ${RPC_DEPS}) - -cc_library( - client - SRCS ps_client.cc - DEPS downpour_client ${RPC_DEPS}) -cc_library( - server - SRCS server.cc - DEPS downpour_server ${RPC_DEPS}) - -cc_library( - communicator - SRCS communicator/communicator.cc - DEPS scope client table math_function selected_rows_functor ${RPC_DEPS}) cc_library( ps_service - SRCS ps_service/service.cc - DEPS communicator client server ${RPC_DEPS}) + SRCS graph_brpc_server.cc + brpc_ps_server.cc + server.cc + graph_brpc_client.cc + brpc_ps_client.cc + ps_local_client.cc + coordinator_client.cc + ps_client.cc + communicator/communicator.cc + ps_service/service.cc + ps_service/graph_py_service.cc + DEPS eigen3 + table + brpc_utils + simple_threadpool + scope + math_function + selected_rows_functor + ${RPC_DEPS}) cc_library( heter_client @@ -123,13 +120,3 @@ cc_library( heter_server SRCS heter_server.cc DEPS heter_client brpc_utils ${COMMON_DEPS} ${RPC_DEPS}) - -set_source_files_properties( - ps_service/graph_py_service.cc PROPERTIES COMPILE_FLAGS - ${DISTRIBUTE_COMPILE_FLAGS}) -cc_library( - graph_py_service - SRCS ps_service/graph_py_service.cc - DEPS ps_service) - -#add_subdirectory(communicator) diff --git a/paddle/fluid/distributed/ps/service/communicator/CMakeLists.txt b/paddle/fluid/distributed/ps/service/communicator/CMakeLists.txt deleted file mode 100755 index d6ef2970963d1f79176b68ffc2ef16876d6a9a8d..0000000000000000000000000000000000000000 --- a/paddle/fluid/distributed/ps/service/communicator/CMakeLists.txt +++ /dev/null @@ -1,10 +0,0 @@ -get_property(RPC_DEPS GLOBAL PROPERTY RPC_DEPS) - -set(DISTRIBUTE_COMPILE_FLAGS "${DISTRIBUTE_COMPILE_FLAGS} -faligned-new") -set_source_files_properties( - communicator.cc PROPERTIES COMPILE_FLAGS ${DISTRIBUTE_COMPILE_FLAGS}) - -cc_library( - communicator - SRCS communicator.cc - DEPS scope client table math_function selected_rows_functor ${RPC_DEPS}) diff --git a/paddle/fluid/distributed/ps/table/CMakeLists.txt b/paddle/fluid/distributed/ps/table/CMakeLists.txt index 983e8172f18c94075b9871fe4cc54bd76b1652ec..4b233a8b27f28502d564b8324119d17b14a651b9 100644 --- a/paddle/fluid/distributed/ps/table/CMakeLists.txt +++ b/paddle/fluid/distributed/ps/table/CMakeLists.txt @@ -53,10 +53,6 @@ cc_library( set_source_files_properties( tensor_accessor.cc PROPERTIES COMPILE_FLAGS ${DISTRIBUTE_COMPILE_FLAGS}) -cc_library( - tensor_accessor - SRCS tensor_accessor.cc - DEPS ${TABLE_DEPS} eigen3 ps_framework_proto device_context) cc_library( tensor_table SRCS @@ -89,36 +85,28 @@ set_source_files_properties( ${DISTRIBUTE_COMPILE_FLAGS}) cc_library( - sparse_sgd_rule + table SRCS sparse_sgd_rule.cc - DEPS ${TABLE_DEPS} ps_framework_proto) -cc_library( - ctr_accessor - SRCS ctr_accessor.cc ctr_double_accessor.cc sparse_accessor.cc + ctr_accessor.cc + ctr_double_accessor.cc + sparse_accessor.cc ctr_dymf_accessor.cc - DEPS ${TABLE_DEPS} ps_framework_proto sparse_sgd_rule) -cc_library( - sparse_table - SRCS memory_sparse_table.cc ssd_sparse_table.cc memory_sparse_geo_table.cc - DEPS ps_framework_proto - ${TABLE_DEPS} - fs - afs_wrapper - ctr_accessor - common_table - rocksdb) - -cc_library( - table - SRCS table.cc - DEPS sparse_table + tensor_accessor.cc + memory_sparse_table.cc + ssd_sparse_table.cc + memory_sparse_geo_table.cc + table.cc + DEPS ${TABLE_DEPS} common_table - tensor_accessor tensor_table ps_framework_proto string_helper device_context gflags - glog) + glog + fs + afs_wrapper + rocksdb + eigen3) target_link_libraries(table -fopenmp) diff --git a/paddle/fluid/distributed/test/CMakeLists.txt b/paddle/fluid/distributed/test/CMakeLists.txt index 16681ea77bbeaa218774d78592fb274d8f1e5ac1..579b407495de0608c5cdfe9d71749536adce6f07 100644 --- a/paddle/fluid/distributed/test/CMakeLists.txt +++ b/paddle/fluid/distributed/test/CMakeLists.txt @@ -3,23 +3,21 @@ set_source_files_properties( cc_test( table_test SRCS table_test.cc - DEPS common_table table tensor_accessor ps_framework_proto ${COMMON_DEPS} - ${RPC_DEPS}) + DEPS common_table table ps_framework_proto ${COMMON_DEPS} ${RPC_DEPS}) set_source_files_properties( dense_table_test.cc PROPERTIES COMPILE_FLAGS ${DISTRIBUTE_COMPILE_FLAGS}) cc_test( dense_table_test SRCS dense_table_test.cc - DEPS common_table table tensor_accessor ps_framework_proto ${COMMON_DEPS} - ${RPC_DEPS}) + DEPS common_table table ps_framework_proto ${COMMON_DEPS} ${RPC_DEPS}) set_source_files_properties( barrier_table_test.cc PROPERTIES COMPILE_FLAGS ${DISTRIBUTE_COMPILE_FLAGS}) cc_test( barrier_table_test SRCS barrier_table_test.cc - DEPS common_table table tensor_accessor ps_framework_proto ${COMMON_DEPS}) + DEPS common_table table ps_framework_proto ${COMMON_DEPS}) set_source_files_properties( brpc_service_dense_sgd_test.cc PROPERTIES COMPILE_FLAGS @@ -27,14 +25,7 @@ set_source_files_properties( cc_test( brpc_service_dense_sgd_test SRCS brpc_service_dense_sgd_test.cc - DEPS scope - server - client - communicator - ps_service - table - ps_framework_proto - ${COMMON_DEPS}) + DEPS scope ps_service table ps_framework_proto ${COMMON_DEPS}) set_source_files_properties( brpc_service_sparse_sgd_test.cc PROPERTIES COMPILE_FLAGS @@ -42,14 +33,7 @@ set_source_files_properties( cc_test( brpc_service_sparse_sgd_test SRCS brpc_service_sparse_sgd_test.cc - DEPS scope - server - client - communicator - ps_service - table - ps_framework_proto - ${COMMON_DEPS}) + DEPS scope ps_service table ps_framework_proto ${COMMON_DEPS}) set_source_files_properties( brpc_utils_test.cc PROPERTIES COMPILE_FLAGS ${DISTRIBUTE_COMPILE_FLAGS}) @@ -63,30 +47,14 @@ set_source_files_properties( cc_test( graph_node_test SRCS graph_node_test.cc - DEPS graph_py_service - scope - server - client - communicator - ps_service - table - ps_framework_proto - ${COMMON_DEPS}) + DEPS scope ps_service table ps_framework_proto ${COMMON_DEPS}) set_source_files_properties( graph_node_split_test.cc PROPERTIES COMPILE_FLAGS ${DISTRIBUTE_COMPILE_FLAGS}) cc_test( graph_node_split_test SRCS graph_node_split_test.cc - DEPS graph_py_service - scope - server - client - communicator - ps_service - table - ps_framework_proto - ${COMMON_DEPS}) + DEPS scope ps_service table ps_framework_proto ${COMMON_DEPS}) set_source_files_properties( graph_table_sample_test.cc PROPERTIES COMPILE_FLAGS diff --git a/paddle/fluid/pybind/CMakeLists.txt b/paddle/fluid/pybind/CMakeLists.txt index e198287abced45c38e58d6b2e3c8227e7533ee74..e6634ab37498c344b56e88abf9af5525ad0d2d3a 100755 --- a/paddle/fluid/pybind/CMakeLists.txt +++ b/paddle/fluid/pybind/CMakeLists.txt @@ -44,7 +44,6 @@ set(PYBIND_DEPS if(WITH_PSCORE) set(PYBIND_DEPS ${PYBIND_DEPS} ps_service) - set(PYBIND_DEPS ${PYBIND_DEPS} graph_py_service) if(WITH_HETERPS) set(PYBIND_DEPS ${PYBIND_DEPS} graph_gpu_wrapper) endif() @@ -200,7 +199,7 @@ if(WITH_PSCORE) endif() set_source_files_properties( fleet_py.cc PROPERTIES COMPILE_FLAGS ${DISTRIBUTE_COMPILE_FLAGS}) - list(APPEND PYBIND_DEPS fleet communicator index_wrapper index_sampler) + list(APPEND PYBIND_DEPS fleet index_wrapper index_sampler) list(APPEND PYBIND_SRCS) set(PYBIND_SRCS fleet_py.cc ${PYBIND_SRCS}) endif()