openvino/src
Ivan Tikhonov 5fadde62ba
Enable ResolveNamesCollisions transformation in MOC #2 (#18772)
* ResolveNamesCollisions transformation refactoring; enable it in MOC

* fix the description

* call ResolveNamesCollisions transformation in the frontends; resolve review comments

* Resolve review comments

* fix EliminateUnsqueezeGather and AlignMixedTypes transformations
2023-07-29 09:29:31 +04:00
..
bindings [GPU] LUID property added (#18815) 2023-07-28 19:16:25 +04:00
cmake Proxy plugin 2.0 (#17416) 2023-07-07 13:45:20 +04:00
common Enable ResolveNamesCollisions transformation in MOC #2 (#18772) 2023-07-29 09:29:31 +04:00
core Enable ResolveNamesCollisions transformation in MOC #2 (#18772) 2023-07-29 09:29:31 +04:00
docs Added components relationships on architecture page (#17037) 2023-04-19 10:51:23 +04:00
frontends Enable ResolveNamesCollisions transformation in MOC #2 (#18772) 2023-07-29 09:29:31 +04:00
inference [GPU] LUID property added (#18815) 2023-07-28 19:16:25 +04:00
plugins [GPU] Fuse MVN before ConvertPrecision (#18845) 2023-07-28 20:05:05 +02:00
tests [CONFORMANCE] Move testsRunner to new subgraphsDumper (#18129) 2023-07-28 19:04:44 +02:00
.clang-format
CMakeLists.txt [core]Trim `__FILE__` macro by compiler if supported (#18411) 2023-07-13 13:42:01 +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