openvino/src
Tomasz Dołbniak a4a7344732
The code (#18270)
2023-06-29 09:46:38 +02:00
..
bindings [PyOV] Force copy of not writable numpy arrays (#18194) 2023-06-28 07:56:29 +02:00
cmake Vcpkg conan fixes (#17765) 2023-05-29 15:40:51 +04:00
common The code (#18270) 2023-06-29 09:46:38 +02:00
core ScatterElementsUpdate-12 reference implementation (#18231) 2023-06-28 13:53:07 +02:00
docs Added components relationships on architecture page (#17037) 2023-04-19 10:51:23 +04:00
frontends Revert "Enable ResolveNamesCollisions transformation in MOC (#18052)" (#18218) 2023-06-24 01:06:12 +04:00
inference Include BATCH plugin proprieties in get_supported_property return list (#17504) 2023-06-27 12:07:59 +04:00
plugins [GPU] fix pr18171 regression (#18272) 2023-06-29 09:44:38 +09:00
tests [GNA] NCHW to NHWC layout transformations (#18120) 2023-06-28 19:55:34 +02:00
.clang-format Move core components (#8869) 2021-11-27 18:53:12 +03:00
CMakeLists.txt Deprecate legacy Core and Allocator (#17646) 2023-05-26 07:06:03 +04:00
README.md [DOCS] Link adjustment (Snippets) for master (#17659) 2023-05-24 14:03:54 +04:00

README.md

OpenVINO™ Core Components

This section provides references and information about OpenVINO core components.

bindings/           // OpenVINO bindings
cmake/              // Common cmake scripts
common/             // Common components
core/               // OpenVINO core component provides model representation, operations and other core functionality
frontends/          // OpenVINO frontends
inference/          // Provides API for model inference
plugins/            // OpenVINO plugins
tests/              // A backed of tests binaries for core and plugins

OpenVINO Runtime library

OpenVINO Runtime is a common OpenVINO library which provides functionality for Neural Network inference. The library includes next parts:

flowchart LR
    subgraph openvino [openvino library]
        core
        inference
        transformations[Common transformations]
        lp_transformations[LP transformations]
        frontend_common
        style frontend_common fill:#7f9dc0,stroke:#333,stroke-width:4px
        style transformations fill:#3d85c6,stroke:#333,stroke-width:4px
        style lp_transformations fill:#0b5394,stroke:#333,stroke-width:4px
        style core fill:#679f58,stroke:#333,stroke-width:4px
        style inference fill:#d7a203,stroke:#333,stroke-width:4px
    end
  • core is responsible for model representation, contains a set of supported OpenVINO operations and base API for model modification.
  • inference provides the API for model inference on different accelerators.
  • Transformations:
  • frontend_common provides frontend common API which allows to support frontends for different frameworks.

OpenVINO Frontends

OpenVINO Frontends allow to convert model from framework to OpenVINO representation.

Go to the Frontends page to get more information.

OpenVINO Plugins

OpenVINO Plugins provide support for hardware devices.

To get more information about supported OpenVINO Plugins, go to the Plugins page.

OpenVINO Bindings

OpenVINO provides bindings for different languages. To get the full list of supported languages, go to the bindings page.

Core developer topics

See also