openvino/src/core
Maciej Smyk c0d564a465
[DOCS] Hyperlink 23.3 update for master (#21908)
* link update

* link update

* link update

* Update dev_api_references.rst

* Update dev_api_references.rst

* Update apidoc.py

* notebooks links

* notebook link update

* filename update

* link update

* link update api
2024-01-08 12:40:54 +01:00
..
dev_api [Core] Move validation util into dev API (#21501) 2023-12-14 10:10:46 +01:00
docs [DOCS] Hyperlink 23.3 update for master (#21908) 2024-01-08 12:40:54 +01:00
include Delete `ngraph` #1 (#21871) 2024-01-05 16:37:36 +04:00
reference Fix Coverity CID 1529136, 1529124 (#21733) 2023-12-19 07:06:33 +00:00
shape_inference [TF FE] Complex type support extended for Separate Bass model. (#21477) 2023-12-21 15:17:12 +04:00
src Delete `ngraph` #1 (#21871) 2024-01-05 16:37:36 +04:00
template_extension Replaced several cmake utilities with new ov_ prefix (#19819) 2023-09-14 16:22:50 +04:00
tests Delete `ngraph` #1 (#21871) 2024-01-05 16:37:36 +04:00
CMakeLists.txt Remove openvino_builders (#21637) 2023-12-28 15:32:56 +04:00
README.md [DOCS] Hyperlink 23.3 update for master (#21908) 2024-01-08 12:40:54 +01:00

README.md

OpenVINO™ Core

OpenVINO Core is a part of OpenVINO Runtime library. The component is responsible for:

OpenVINO Core supports conditional compilation feature and uses the common coding style rules.

Key person

People from the openvino-ngraph-maintainers allows to approve and merge PRs to the core component. These guys can help in case of any questions about core component.

Components

OpenVINO Core has the next structure:

  • builders is obsolete component which provides helper methods for operation creations. Please don't use this API, and use public OpenVINO API instead.
  • dev_api contains developer API. In order to use this API, you need to link your component against openvino::runtime::dev.
  • docs contains developer documentation pages for the component.
  • include contains public API. Detailed information about provided API can be found here.
  • reference is a library which provides reference implementations for all supported operations. Operations with evaluate method use these implementations inside.
  • shape_inference library contains implementation of shape inference for OpenVINO operations.
  • src folder contains sources of the core component.
  • tests contains tests for OpenVINO Core components. More information about OpenVINO Core tests can be found here.

Tutorials

See also