Created by: luotao1
- fix https://github.com/PaddlePaddle/Paddle/pull/7827#issuecomment-361160875
- the shared library now is :
PaddleRoot
├── paddle
│ ├── framework
│ │ ├── attribute.h
│ │ ├── backward.h ...
│ │ └── var_type_inference.h
│ ├── inference
│ │ ├── inference.h
│ │ ├── libpaddle_fluid.a
│ │ └── libpaddle_fluid.so
│ ├── memory
│ │ ├── detail
│ │ ├── memcpy.h
│ │ └── memory.h
│ ├── platform
│ │ ├── assert.h
│ │ ├── call_once.h ...
│ │ └── variant.h
│ └── string
│ ├── piece.h
│ ├── printf.h
│ ├── tinyformat
│ └── to_string.h
└── third_party
├── eigen3
│ ├── Eigen
│ │ ├── Core
│ │ └── src
│ └── unsupported
│ └── Eigen
└── install
├── gflags
│ ├── include
│ └── lib
├── glog
│ ├── include
│ └── lib
└── protobuf
├── include
└── lib
- the command for this fluid inference library is :
make -j 12
make inference_lib_dist