You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Paddle/paddle/fluid/inference/api
YUNSHEN XIE ba0756325a
exec ut no more than 15s 1 (#28439)
5 years ago
..
demo_ci revert the modified shell script (#28453) 5 years ago
details
CMakeLists.txt exec ut no more than 15s 1 (#28439) 5 years ago
README.md
analysis_config.cc TensorRT中ernie模型推理性能优化,支持变长输入 (#28367) 5 years ago
analysis_predictor.cc TensorRT中ernie模型推理性能优化,支持变长输入 (#28367) 5 years ago
analysis_predictor.h save operator version infomation to program desc, test=develop (#27668) 5 years ago
analysis_predictor_tester.cc
api.cc
api_impl.cc
api_impl.h
api_impl_tester.cc
api_tester.cc
helper.cc
helper.h
high_level_api.md
high_level_api_cn.md
mkldnn_quantizer.cc
mkldnn_quantizer.h
mkldnn_quantizer_config.cc
paddle_analysis_config.h TensorRT中ernie模型推理性能优化,支持变长输入 (#28367) 5 years ago
paddle_api.h
paddle_infer_declare.h
paddle_inference_api.h
paddle_mkldnn_quantizer_config.h
paddle_pass_builder.cc oneDNN BatchNorm + Act fusion pass. (#27912) 5 years ago
paddle_pass_builder.h

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:

  1. Optimize the native model;
  2. 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.