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

L
liaogang 已提交
3
cc_library(memory SRCS memory.cc)
4 5 6 7 8 9

cc_library(paddle_memory
    DEPS
    memory meta_data
    meta_cache memory_block
    buddy_allocator system_allocator)
L
liaogang 已提交
10 11

cc_test(memory_test SRCS memory_test.cc DEPS place paddle_memory)