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
Shang Zhizhou ae0f88a988
add DLA support:C++&&Python api (#30165)
4 years ago
..
demo_ci export global google flags to users, test=develop (#30448) 4 years ago
details [Inference] zero_copy_tensor supports int8_t (#30053) 4 years ago
CMakeLists.txt fix api_impl test. (#28483) 5 years ago
README.md Combine Inference Analysis with IR (#13914) 7 years ago
analysis_config.cc add DLA support:C++&&Python api (#30165) 4 years ago
analysis_predictor.cc add DLA support:C++&&Python api (#30165) 4 years ago
analysis_predictor.h [Inference] Add TryShrinkMemory interface. (#28409) 5 years ago
analysis_predictor_tester.cc Fix analysis predictor test (#30191) 4 years ago
api.cc export global google flags to users, test=develop (#30448) 4 years ago
api_impl.cc Fix gpu memory allocation bug. (#28703) 5 years ago
api_impl.h use iwyu clean include (#27267) 5 years ago
api_impl_tester.cc Replace all errors thrown by LOG(FATAL) with PADDLE_THROW (#24759) 5 years ago
api_tester.cc fix trt delete_pass bug. (#28763) 5 years ago
helper.cc rollback paddle_inference_helper.h to helper.h 7 years ago
helper.h use iwyu clean include (#27267) 5 years ago
high_level_api.md remove anakin from code, test=develop (#22420) 5 years ago
high_level_api_cn.md remove anakin from code, test=develop (#22420) 5 years ago
mkldnn_quantizer.cc Enhance infer error info message (#26731) 5 years ago
mkldnn_quantizer.h INT8 Fully-connected (#17641) 6 years ago
mkldnn_quantizer_config.cc use iwyu clean include (#27267) 5 years ago
paddle_analysis_config.h add DLA support:C++&&Python api (#30165) 4 years ago
paddle_api.h fix bug on compiling inference shared lib with crypto;test=develop (#30269) 4 years ago
paddle_infer_declare.h fix bug MD of compile, And add MD/STATIC/OPENBLAS inference lib check on windows (#27051) 5 years ago
paddle_inference_api.h [Inference] Add TryShrinkMemory interface. (#28409) 5 years ago
paddle_mkldnn_quantizer_config.h support C++ inference shared library on windows (#24672) 5 years ago
paddle_pass_builder.cc - Disabling oneDNN inplace pass (#30588) 4 years ago
paddle_pass_builder.h use iwyu clean include (#27267) 5 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:

  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.