openvino/src/inference
Ilya Churaev 9c908f5245
Migrate template backend to new api (#19843)
* Added set_element_type for tensor

* Moved template backend to new API

* Revert "Added set_element_type for tensor"

This reverts commit 27608d2ea0.

* Fixed build

* Fixed more errors

* Fixed loop implementation

* Fixed ONNX tests

* Small change

* Fixed set_shape for host tensor

* Fixed ReadValue Assign tests

* Fixed template tests

* Fixed build

* Fix Windows build

* Fixed more errors

* Fixed CTCLoss

* Fixed comments

* Removed all comments

* Fixed tensors update

* Try to fix tests
2023-09-19 11:46:11 +04:00
..
dev_api [GPU] 2.0 plugin api impl (#18920) 2023-09-12 11:13:59 +04:00
docs [DOCS] Link adjustment for dev docs + fix to build.md CPU link for master (#17744) 2023-05-31 13:27:20 +04:00
include [GPU] 2.0 plugin api impl (#18920) 2023-09-12 11:13:59 +04:00
src Migrate template backend to new api (#19843) 2023-09-19 11:46:11 +04:00
tests Removed FixRtInfo pass (#16870) 2023-09-19 00:07:59 +04:00
CMakeLists.txt Replaced several cmake utilities with new ov_ prefix (#19819) 2023-09-14 16:22:50 +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