openvino/src
River Li d145b32d2f
Avoid capi infer wait timeout (#23973)
### Details:
 - Avoid capi infer wait timeout
 - *...*

### Tickets:
 - CVS-128963
 - CVS-136569

---------

Co-authored-by: vurusovs <vitaliy.urusovskij@intel.com>
2024-04-16 06:51:07 +00:00
..
bindings Avoid capi infer wait timeout (#23973) 2024-04-16 06:51:07 +00:00
cmake cmake: fix build when using sysroot (#23486) 2024-03-27 09:48:37 +00:00
common [GPU] int4 weight compression for onednn (#23727) 2024-04-04 12:18:10 +00:00
core [core] Constant use element iterator (#23810) 2024-04-15 13:03:53 +00:00
docs Added components relationships on architecture page (#17037) 2023-04-19 10:51:23 +04:00
frontends [tests] Fix build of extensions test for FEs if FEs disabled (#24029) 2024-04-16 06:07:18 +00:00
inference [tests] Fix build of extensions test for FEs if FEs disabled (#24029) 2024-04-16 06:07:18 +00:00
plugins [Tmpl test] PriorBox(Clustered): enable whole Tensor comparison (#24022) 2024-04-16 06:19:38 +00:00
tests [Opset] Initialization of OV Opset15 (#23960) 2024-04-15 08:45:25 +00:00
.clang-format
CMakeLists.txt copyright year update (#23370) 2024-03-14 09:37:02 +00:00
README.md [DOCS] Update of hyperlinks to 2024 + new ov homepage diagram image for master (#23091) 2024-02-28 07:54:04 +00: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