Files
openvino/src/core/docs/api_details.md
Maciej Smyk dc36ec11b5 [DOCS] Link adjustment for dev docs + fix to build.md CPU link for master (#17744)
* link-update-1

* link update

* Update build.md

* dl workbench

* Update README.md
2023-05-31 13:27:20 +04:00

2.4 KiB

OpenVINO Core API

OpenVINO Core API contains two folders:

  • ngraph - is a legacy API, this API is no longer being developed. Only aliases to new operations and operation sets extend this API.
  • openvino - current public API, this part is described below.

Structure of Core API

 
 openvino/                  // Common folder with OpenVINO 2.0 API
    core/                   // Contains common classes which are responsible for model representation
    op/                     // Contains all supported OpenVINO operations
    opsets/                 // Contains definitions of each official OpenVINO opset
    pass/                   // Defines classes for developing transformation and several common transformations
    runtime/                // Contains OpenVINO tensor definition
 

Main structures for model representation

See also