openvino/src/core
Jan Iwaszkiewicz bc78fd359e
[PyOV] Dynamic attributes for Python based operators (#21256)
2023-11-27 16:16:02 +01:00
..
builder Relocatable developer package (#20327) 2023-10-12 22:59:04 +00:00
dev_api [core] Migrate Divide operator to new API (#20766) 2023-11-03 10:35:43 +01:00
docs [DOCS] Updating links for master 2023-11-13 12:23:23 +01:00
include ConvertPrecision transformation: handle Assign, ReadValue and Variable (#21266) 2023-11-27 18:34:31 +04:00
reference resolve TODO in efficient compression: return hashing compression back (#21141) 2023-11-25 08:35:35 +00:00
shape_inference [Opset13][FP8] FakeConvert-13 input validation improvements (#21226) 2023-11-27 07:38:08 +00:00
src [PyOV] Dynamic attributes for Python based operators (#21256) 2023-11-27 16:16:02 +01:00
template_extension Replaced several cmake utilities with new ov_ prefix (#19819) 2023-09-14 16:22:50 +04:00
tests ConvertPrecision transformation: handle Assign, ReadValue and Variable (#21266) 2023-11-27 18:34:31 +04:00
CMakeLists.txt Relocatable developer package (#20327) 2023-10-12 22:59:04 +00:00
README.md [DOCS] Updating links for master 2023-11-13 12:23:23 +01: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