CMakeLists.txt 395 字节
Newer Older
1
add_subdirectory(detail)
2

Q
Qiao Longfei 已提交
3
cc_library(memory SRCS memory.cc DEPS place enforce)
D
dangqingqing 已提交
4
cc_library(memcpy SRCS memcpy.cc DEPS place)
5 6

cc_library(paddle_memory
7 8 9
        DEPS
        memory
        memcpy
Y
Yi Wang 已提交
10
        buddy_allocator)
L
liaogang 已提交
11 12

cc_test(memory_test SRCS memory_test.cc DEPS place paddle_memory)
13

C
chengduoZH 已提交
14 15 16
#if (WITH_GPU)
#   nv_test(pinned_memory_test SRCS pinned_memory_test.cu  DEPS place paddle_memory)
#endif()