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
joanna.wozna.intel ddcd1b5381
Add bfloat16 resnet50 test (#27755)
4 years ago
..
demo_ci Demo CMakeLists add openmp flag. (#27848) 4 years ago
details use iwyu clean include (#27267) 5 years ago
CMakeLists.txt [UT] fix run type of ut test cases of test_train_recognize_digits and test_api_impl, test=develop (#27218) 5 years ago
README.md
analysis_config.cc Add bfloat16 resnet50 test (#27755) 4 years ago
analysis_predictor.cc Add bfloat16 resnet50 test (#27755) 4 years ago
analysis_predictor.h save operator version infomation to program desc, test=develop (#27668) 4 years ago
analysis_predictor_tester.cc Restore "Add mkldnn bfloat16 option to C-API " (#26882) 5 years ago
api.cc Enhance infer error info message (#26731) 5 years ago
api_impl.cc update for 2.0 inference api. (#27473) 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 test=develop, add log message in the function UpdateDllFlag (#24937) 5 years ago
helper.cc
helper.h use iwyu clean include (#27267) 5 years ago
high_level_api.md
high_level_api_cn.md
mkldnn_quantizer.cc Enhance infer error info message (#26731) 5 years ago
mkldnn_quantizer.h
mkldnn_quantizer_config.cc use iwyu clean include (#27267) 5 years ago
paddle_analysis_config.h Add bfloat16 resnet50 test (#27755) 4 years ago
paddle_api.h refine paddle inference api (#26774) 5 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 Add 2.0 inference api doc. (#27125) 5 years ago
paddle_mkldnn_quantizer_config.h support C++ inference shared library on windows (#24672) 5 years ago
paddle_pass_builder.cc Add pass compatible and unit test. (#27377) 5 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.