2.6 KiB
Inference Engine Extensibility Mechanism
Inference Engine Extensibility API allows to add support of custom operations to the Inference Engine.
Extension should contain operation sets with custom operations and execution kernels for custom operations.
Physically, an extension library can be represented as a dynamic library exporting the single CreateExtension function that allows to create a new extension instance.
Extensibility library can be loaded to the InferenceEngine::Core object using the InferenceEngine::Core::AddExtension method.
Inference Engine Extension Library
Inference Engine Extension dynamic library contains several main components:
- Extension class:
- Contains custom operation sets
- Provides CPU implementations for custom operations
- Custom operations:
- Allows to use InferenceEngine::Core::ReadNetwork to read Intermediate Representation (IR) with unsupported operations
- Allows to create
ngraph::Functionwith unsupported operations - Provides shape inference mechanism for custom operations
Note
: This documentation is written based on the
Template extension, which demonstrates extension development details. Find the complete code of theTemplate extension, which is fully compilable and up-to-date, at<dldt source tree>/docs/template_extension.
Execution Kernels
The Inference Engine workflow involves the creation of custom kernels and either custom or existing operations.
An Operation is a Network building block implemented in the training framework, for example, Convolution in Caffe*.
A Kernel is defined as the corresponding implementation in the Inference Engine.
Refer to the Custom Layers in the Model Optimizer section for details on how mapping between framework layers and Inference Engine kernels is registered.
In short, you can plug your own kernel implementations into the Inference Engine and map them to the layers in the original framework.
The following pages describe how to integrate custom kernels into the Inference Engine:
- Introduction to development of custom CPU kernels
- Introduction to development of custom GPU kernels
- Introduction to development of custom VPU kernels