openvino/src/core
Oleg Pipikin 8f42bf1647
Fix copy constructor and assignment for ov::Any (#16757) (#17087)
* Fix copy constructor and assignment for ov::Any (#16757)

* Fix copy constructor and assignment for ov::Any

* Fix1

* Apply comments

* Add test

* Fix code style

* Fix2

* Fix3

* Fix1
2023-05-18 11:29:05 +04:00
..
builder Updated copyrights with 2023 year (#15148) 2023-02-02 16:48:28 +01:00
dev_api Updated copyrights with 2023 year (#15148) 2023-02-02 16:48:28 +01:00
docs Update core doc (#13324) 2022-10-04 14:21:51 +04:00
include Fix copy constructor and assignment for ov::Any (#16757) (#17087) 2023-05-18 11:29:05 +04:00
reference Fix FQ ref impl broadcasting (#17017) 2023-04-18 22:57:02 +04:00
shape_inference Updated copyrights with 2023 year (#15148) 2023-02-02 16:48:28 +01:00
src Fix copy constructor and assignment for ov::Any (#16757) (#17087) 2023-05-18 11:29:05 +04:00
template_extension Updated copyrights with 2023 year (#15148) 2023-02-02 16:48:28 +01:00
tests Fix copy constructor and assignment for ov::Any (#16757) (#17087) 2023-05-18 11:29:05 +04:00
CMakeLists.txt Updated copyrights with 2023 year (#15148) 2023-02-02 16:48:28 +01:00
README.md Add ir frontend doc (#13351) 2022-10-06 16:31:25 +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