openvino/src/inference
Wang, Yang 5a463d9886
Conversion fail for ov::hint::performance_mode with UNDEFINED value (#15903)
* Update ov::hint::performance_hint UNDEFINED value from empty string to "UNDEFINED".
Update benchmark Python version.
Update the description about hint setting within benchmark APP README and help message.

* Drop the reduntant changes.
2023-02-23 17:28:02 +04:00
..
dev_api Conversion fail for ov::hint::performance_mode with UNDEFINED value (#15903) 2023-02-23 17:28:02 +04:00
docs DOCS: Developer documentation Inference component update (#13895) 2022-11-08 07:42:10 +04:00
include Conversion fail for ov::hint::performance_mode with UNDEFINED value (#15903) 2023-02-23 17:28:02 +04:00
src 22.3: remove tbb version check for using tbbbind static library (#15700) 2023-02-15 00:01:18 +04:00
tests Port relative path 2022.3 (#15523) 2023-02-08 18:46:23 +01:00
CMakeLists.txt Updated copyrights with 2023 year (#15148) 2023-02-02 16:48:28 +01: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