openvino/src
Wilson Seok 83a8db31c4
[GPU] Add dynamic input shape support in loop body network (#22181)
* add dynamic input shape support in loop body network

* add single layer test for the case
2024-01-19 14:41:40 -08:00
..
bindings [OV JS] Add ov_add_clang_format_target (#22220) 2024-01-18 18:47:49 +00:00
cmake Removed IE and ngraph headers / cmake interfaces from package (#22203) 2024-01-19 16:48:27 +04:00
common Fix wstring join_paths (#22271) 2024-01-19 20:36:57 +01:00
core Removed ngraph/pattern (#22275) 2024-01-19 20:45:48 +04:00
docs Added components relationships on architecture page (#17037) 2023-04-19 10:51:23 +04:00
frontends Supported dynamic protobuf in ONNX tests (#22272) 2024-01-19 20:44:37 +04:00
inference Removed IE and ngraph headers / cmake interfaces from package (#22203) 2024-01-19 16:48:27 +04:00
plugins [GPU] Add dynamic input shape support in loop body network (#22181) 2024-01-19 14:41:40 -08:00
tests LPT `ngraph` cleanup (#22265) 2024-01-19 18:50:27 +04:00
.clang-format
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 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