|
6 years ago | |
---|---|---|
.. | ||
demo_ci | 6 years ago | |
details | 6 years ago | |
CMakeLists.txt | 6 years ago | |
README.md | 6 years ago | |
analysis_config.cc | 6 years ago | |
analysis_predictor.cc | 6 years ago | |
analysis_predictor.h | 6 years ago | |
analysis_predictor_tester.cc | 6 years ago | |
api.cc | 6 years ago | |
api_anakin_engine.cc | 6 years ago | |
api_anakin_engine.h | 6 years ago | |
api_impl.cc | 6 years ago | |
api_impl.h | 6 years ago | |
api_impl_tester.cc | 6 years ago | |
api_tester.cc | 7 years ago | |
helper.cc | 7 years ago | |
helper.h | 6 years ago | |
high_level_api.md | 7 years ago | |
high_level_api_cn.md | 7 years ago | |
paddle_anakin_config.h | 6 years ago | |
paddle_analysis_config.h | 6 years ago | |
paddle_api.h | 6 years ago | |
paddle_inference_api.h | 6 years ago | |
paddle_pass_builder.cc | 6 years ago | |
paddle_pass_builder.h | 6 years ago |
README.md
Embed Paddle Inference in Your Application
Paddle inference offers the APIs in C
and C++
languages.
You can easily deploy a model trained by Paddle following the steps as below:
- Optimize the native model;
- Write some codes for deployment.
The APIs
All the released APIs are located in the paddle_inference_api.h
header file.
The stable APIs are wrapped by namespace paddle
, the unstable APIs are protected by namespace paddle::contrib
.
Write some codes
Read paddle_inference_api.h
for more information.