CMakeLists.txt 1.7 KB
Newer Older
1
if(WITH_PSLIB)
2
    cc_library(fleet_wrapper SRCS fleet_wrapper.cc DEPS framework_proto variable_helper scope pslib_brpc pslib)
T
Thunderbrook 已提交
3 4 5 6
    if(WITH_NCCL)
        nv_library(ps_gpu_wrapper SRCS ps_gpu_wrapper.cu ps_gpu_wrapper.cc
        DEPS heter_ps)
        add_subdirectory(heter_ps)
7 8 9 10
    elseif(WITH_RCCL)
        hip_library(ps_gpu_wrapper SRCS ps_gpu_wrapper.cu ps_gpu_wrapper.cc
        DEPS heter_ps)
        add_subdirectory(heter_ps)
T
Thunderbrook 已提交
11 12 13
    else()
        cc_library(ps_gpu_wrapper SRCS ps_gpu_wrapper.cc)
    endif(WITH_NCCL)
14
else()
15
    cc_library(fleet_wrapper SRCS fleet_wrapper.cc DEPS framework_proto variable_helper scope)
T
Thunderbrook 已提交
16
    cc_library(ps_gpu_wrapper SRCS ps_gpu_wrapper.cc)
17
endif(WITH_PSLIB)
D
dongdaxiang 已提交
18

19
if(WITH_NCCL OR WITH_RCCL)
20 21
    cc_library(nccl_wrapper SRCS nccl_wrapper.cc DEPS framework_proto variable_helper scope)
endif()
H
hutuxian 已提交
22
if(WITH_BOX_PS)
23 24 25 26 27 28
    if(WITH_GPU)
        nv_library(box_wrapper SRCS box_wrapper.cc box_wrapper.cu DEPS framework_proto lod_tensor box_ps)
    endif()
    if(WITH_ROCM)
        hip_library(box_wrapper SRCS box_wrapper.cc box_wrapper.cu DEPS framework_proto lod_tensor box_ps)
    endif()
H
hutuxian 已提交
29 30 31
else()
    cc_library(box_wrapper SRCS box_wrapper.cc DEPS framework_proto lod_tensor)
endif(WITH_BOX_PS)
32

T
Thunderbrook 已提交
33

34 35 36 37 38 39
if(WITH_GLOO)
    cc_library(gloo_wrapper SRCS gloo_wrapper.cc DEPS framework_proto variable_helper scope gloo)
else()
    cc_library(gloo_wrapper SRCS gloo_wrapper.cc DEPS framework_proto variable_helper scope)
endif(WITH_GLOO)

T
Thunderbrook 已提交
40
cc_library(heter_wrapper SRCS heter_wrapper.cc DEPS framework_proto device_context heter_service_proto)
T
Thunderbrook 已提交
41

Y
YUNSHEN XIE 已提交
42
cc_test(test_fleet_cc SRCS test_fleet.cc DEPS fleet_wrapper gloo_wrapper fs shell)
43 44 45 46

if(WITH_ASCEND)
    cc_library(ascend_wrapper SRCS ascend_wrapper.cc DEPS framework_proto lod_tensor ascend ascend_graph)
endif(WITH_ASCEND)