openvino/src/inference
Ilya Lavrenov ef1632d035
Renamed / removed legacy cmake targets (#22307)
* Removed legacy cmake targets

* Renamed ngraph_obj

* Rename onference_engine targets
2024-01-22 18:18:08 +00:00
..
dev_api [Core] rearrange pugixml and performance heuristics (#22234) 2024-01-22 14:47:54 +01:00
docs [DOCS] Hyperlink 23.3 update for master (#21908) 2024-01-08 12:40:54 +01:00
include Remove ie/cpu/cpu_config.hpp (#22315) 2024-01-22 21:59:54 +04:00
src [Core] rearrange pugixml and performance heuristics (#22234) 2024-01-22 14:47:54 +01:00
tests Renamed / removed legacy cmake targets (#22307) 2024-01-22 18:18:08 +00:00
CMakeLists.txt Renamed / removed legacy cmake targets (#22307) 2024-01-22 18:18:08 +00: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