openvino/src
Ilya Lavrenov 02b848d0b8
Unified cmake find_host_package and other host commands (#17662)
* Unified cmake find_host_package and other host commands

* should work

* Moved files
2023-05-24 08:43:59 +00:00
..
bindings Unified cmake find_host_package and other host commands (#17662) 2023-05-24 08:43:59 +00:00
cmake Unified cmake find_host_package and other host commands (#17662) 2023-05-24 08:43:59 +00:00
common Unified cmake find_host_package and other host commands (#17662) 2023-05-24 08:43:59 +00:00
core Fix StridedSlice constant folding when disabled attribute set. (#17679) 2023-05-24 11:20:17 +04:00
docs Added components relationships on architecture page (#17037) 2023-04-19 10:51:23 +04:00
frontends [PT FE] Fix issues in multiple operations (#17418) 2023-05-22 10:35:34 +02:00
inference Fixed macOS compilation (#17656) 2023-05-22 14:49:33 +04:00
plugins Unified cmake find_host_package and other host commands (#17662) 2023-05-24 08:43:59 +00:00
tests GRUCellFusion - fix handling bias in rz order (#17651) 2023-05-22 20:29:05 +04:00
.clang-format Move core components (#8869) 2021-11-27 18:53:12 +03:00
CMakeLists.txt Build using conanfile.txt (#17580) 2023-05-19 14:01:39 +04:00
README.md Moved legacy library and deprecated tests to GNA (#15244) 2023-01-25 11:36:22 +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