You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.5 KiB
57 lines
1.5 KiB
9 years ago
|
# parameter server package
|
||
|
|
||
|
######################### paddle_network ####################
|
||
|
set(NETWORK_SOURCES
|
||
|
LightNetwork.cpp
|
||
|
SocketChannel.cpp
|
||
|
ProtoServer.cpp)
|
||
|
|
||
|
set(NETWORK_HEADERS
|
||
|
LightNetwork.h
|
||
|
SocketChannel.h
|
||
|
ProtoServer.h)
|
||
|
|
||
|
add_library(paddle_network STATIC
|
||
|
${NETWORK_SOURCES})
|
||
|
|
||
|
add_style_check_target(paddle_network ${NETWORK_SOURCES})
|
||
|
add_style_check_target(paddle_network ${NETWORK_HEADERS})
|
||
|
|
||
|
add_dependencies(paddle_network gen_proto_cpp)
|
||
|
|
||
|
################### paddle_pserver ######################
|
||
|
set(PSERVER_SOURCES
|
||
|
BaseClient.cpp
|
||
|
ParameterClient2.cpp
|
||
|
ParameterServer2.cpp
|
||
|
SparseParameterDistribution.cpp)
|
||
|
|
||
|
set(PSERVER_HEADERS
|
||
|
BaseClient.h
|
||
|
ParameterClient2.h
|
||
|
ParameterServer2.h
|
||
|
SparseParameterDistribution.h)
|
||
|
|
||
|
add_library(paddle_pserver STATIC
|
||
|
${PSERVER_SOURCES})
|
||
|
|
||
|
add_style_check_target(paddle_pserver ${PSERVER_SOURCES})
|
||
|
add_style_check_target(paddle_pserver ${PSERVER_HEADERS})
|
||
|
|
||
|
add_dependencies(paddle_pserver gen_proto_cpp)
|
||
|
|
||
|
set(PSERVER_MAIN_SOURCES
|
||
|
ParameterServer2Main.cpp)
|
||
|
|
||
|
add_executable(paddle_pserver_main
|
||
|
${PSERVER_MAIN_SOURCES})
|
||
|
link_paddle_exe(paddle_pserver_main)
|
||
|
if(WITH_TESTING)
|
||
|
add_subdirectory(test)
|
||
|
endif()
|
||
|
install(TARGETS paddle_pserver_main
|
||
|
RUNTIME DESTINATION opt/paddle/bin
|
||
|
PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ
|
||
|
GROUP_EXECUTE GROUP_READ WORLD_EXECUTE WORLD_READ)
|
||
|
set_target_properties(paddle_pserver_main PROPERTIES INSTALL_RPATH_USE_LINK_PATH TRUE)
|