openvino/src/inference
Ilya Churaev 71880aadd3
Deprecate set batch method (#17057)
* Deprecate set batch method

* Fixed some errors

* Suppress warning in tests

* Fixed warning in GPU

* Deprecate python
2023-04-19 20:21:18 +00:00
..
dev_api Deprecate set batch method (#17057) 2023-04-19 20:21:18 +00:00
docs DOCS: Developer documentation Inference component update (#13895) 2022-11-08 07:42:10 +04:00
include Deprecate set batch method (#17057) 2023-04-19 20:21:18 +00:00
src update file location for 2023.0 release (#17034) 2023-04-19 10:38:23 +04:00
tests Deprecate set batch method (#17057) 2023-04-19 20:21:18 +00:00
CMakeLists.txt Removed legacy src files from inference library (#16839) 2023-04-10 19:26:09 +04:00
README.md DOCS: Developer documentation Inference component update (#13895) 2022-11-08 07:42:10 +04:00

README.md

OpenVINO™ Inference

OpenVINO Inference is a part of the OpenVINO Runtime library. The component is responsible for model inference on hardware devices and provides API for OpenVINO Plugin development.

OpenVINO Inference uses the common coding style rules.

Key contacts

People from the openvino-ie-maintainers group have the rights to approve and merge PRs to the inference component. They can assist with any questions about the component.

Components

OpenVINO Inference has the following structure:

  • dev_api contains developer API required to develop OpenVINO Plugins. To use this API, link your component against openvino::runtime::dev.
  • include contains public API. Find more information in the OpenVINO Inference API document.
  • src contains sources of the component.

OpenVINO Inference has unit and functional tests. Unit tests are located in src/tests/unit/inference_engine, functional tests are located in src/tests/functional/inference_engine.

See also