openvino/src/core
Pawel Raasz baee150678
Restore f16 precision due to GPU performance drop (#20443)
2023-10-17 01:22:32 +02:00
..
builder Relocatable developer package (#20327) 2023-10-12 22:59:04 +00:00
dev_api [core]Migrate TopK operator to new API (#20254) 2023-10-13 14:53:58 +04:00
docs Use FindPython3.cmake (#19847) 2023-09-26 20:57:29 +02:00
include [core]Migrate LogicalOr to new API (#20421) 2023-10-16 08:56:24 +04:00
reference [core]Migrate LogicalOr to new API (#20421) 2023-10-16 08:56:24 +04:00
shape_inference Relocatable developer package (#20327) 2023-10-12 22:59:04 +00:00
src Restore f16 precision due to GPU performance drop (#20443) 2023-10-17 01:22:32 +02:00
template_extension Replaced several cmake utilities with new ov_ prefix (#19819) 2023-09-14 16:22:50 +04:00
tests [Ref] Drop legacy API - leftovers (#20271) 2023-10-10 03:27:22 +02:00
CMakeLists.txt Relocatable developer package (#20327) 2023-10-12 22:59:04 +00:00
README.md [DOCS] Link adjustment for dev docs + fix to build.md CPU link for master (#17744) 2023-05-31 13:27:20 +04:00

README.md

OpenVINO™ Core

OpenVINO Core is a part of OpenVINO Runtime library. The component is responsible for:

OpenVINO Core supports conditional compilation feature and uses the common coding style rules.

Key person

People from the openvino-ngraph-maintainers allows to approve and merge PRs to the core component. These guys can help in case of any questions about core component.

Components

OpenVINO Core has the next structure:

  • builders is obsolete component which provides helper methods for operation creations. Please don't use this API, and use public OpenVINO API instead.
  • dev_api contains developer API. In order to use this API, you need to link your component against openvino::runtime::dev.
  • docs contains developer documentation pages for the component.
  • include contains public API. Detailed information about provided API can be found here.
  • reference is a library which provides reference implementations for all supported operations. Operations with evaluate method use these implementations inside.
  • shape_inference library contains implementation of shape inference for OpenVINO operations.
  • src folder contains sources of the core component.
  • tests contains tests for OpenVINO Core components. More information about OpenVINO Core tests can be found here.

Tutorials

See also