Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 2.42 KB

api_details.md

File metadata and controls

30 lines (25 loc) · 2.42 KB

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