openvino/src
Artemy Skrebkov bceb7dbfe1
Fix segfault on windows with MSVC (#14517)
* MSVC compiler cannot handle copying empty AnyMap
2022-12-08 21:00:07 +04:00
..
bindings [PyOV] Upgrade mistune and remove import-order (#14356) 2022-12-05 10:16:24 +01:00
cmake Expose IE_THREAD definition to end users (#14476) 2022-12-08 12:05:42 +04:00
common Unique-10 tests and improvements (#14315) 2022-12-06 19:09:30 +03:00
core Unique-10 tests and improvements (#14315) 2022-12-06 19:09:30 +03:00
docs Fixed link to developer documentation (#14149) 2022-11-22 18:02:02 +04:00
frontends [TF FE] Support dynamic shape Placeholder freezing and PlaceholderWithDefault (#14450) (#14482) 2022-12-08 17:43:22 +04:00
inference Bell/fix gpu load model file wrong lifecycle (#14347) 2022-12-06 11:29:07 +03:00
plugins [CPU] Fixed segfault in Generic node creation for dynamic models (#14488) 2022-12-08 17:13:34 +04:00
tests Fix segfault on windows with MSVC (#14517) 2022-12-08 21:00:07 +04:00
tests_deprecated Fix XML vulnerabilities found by bandit (#14415) 2022-12-06 11:46:26 +01:00
.clang-format Move core components (#8869) 2021-11-27 18:53:12 +03:00
CMakeLists.txt Fixed Project root for exceptions (#14178) 2022-11-25 08:26:44 +03:00
README.md Added initial documentation version for Inference component (#13439) 2022-10-13 08:38:32 +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
tests_deprecated/   // Deprecated tests

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