CMakeLists.txt 587 字节
Newer Older
1 2 3 4 5
# Adapt to custom op mechanism: Include the header files related to the data type
# to avoid exposing the path of the underlying file, remove it after moving
# float16.h/complex.h/bfloat16.h into pten
include_directories(${PADDLE_SOURCE_DIR}/paddle/fluid/platform)

6 7
add_subdirectory(memory)
add_subdirectory(platform)
T
tangwei12 已提交
8
add_subdirectory(distributed)
9
add_subdirectory(framework)
10
add_subdirectory(imperative)
11
add_subdirectory(operators)
12
add_subdirectory(string)
W
wopeizl 已提交
13
add_subdirectory(pybind)
J
Jiabin Yang 已提交
14
add_subdirectory(eager)
15

P
peizhilin 已提交
16 17
# NOTE: please add subdirectory inference at last.
add_subdirectory(inference)