Back to Openvino

Custom OpenVINO Operations

docs/articles_en/documentation/openvino-extensibility/custom-openvino-operations.rst

2026.1.27.9 KB
Original Source

Custom OpenVINO Operations

.. meta:: :description: Explore OpenVINO™ Extension API which enables registering custom operations to support models with operations not supported by OpenVINO.

OpenVINO™ Extension API allows you to register custom operations to support models with operations which OpenVINO™ does not support out-of-the-box. A custom operation might be implemented both in C++ and Python.```

Also it is possible to create a shared library with custom operation implemented in C++ first and load it using add_extension API. Please refer to :ref:Create library with extensions <create_a_library_with_extensions> for more details on library creation and usage. The remaining part of this document describes how to implement an operation class using both the C++ API and Python API.

Operation Class ###############

.. tab-set::

.. tab-item:: Python :sync: py

  To add your custom operation, create a new class that extends ``openvino.Op``, which is in turn derived from ``openvino.Node``, the base class for all graph operations in OpenVINO™. To add ``openvino.Op`` you need to import it.


  .. doxygensnippet:: docs/articles_en/assets/snippets/ov_custom_op.py
     :language: python
     :fragment: [op:common_include]

  Follow the steps below to add a simple custom operation:

  1. Define the ``__init__`` method to initialize the class with inputs and attributes.

  2. Override the shape inference method ``validate_and_infer_types``. This method is called multiple times during graph manipulations to determine the shapes and element types of the operations outputs. To access the input shapes and input element types, use the ``get_input_partial_shape()`` and ``get_input_element_type()`` methods of ``openvino.Node``. Set the inferred shape and element type of the output using ``set_output_type``.

  3. Override the ``visit_attributes`` method, which enables serialization and deserialization of operation attributes. An ``AttributeVisitor`` is passed to the method, and the implementation is expected to walk over all the attributes in the op using the type-aware ``on_attribute`` helper. Helpers are already implemented for standard types like ``int``, ``float``, ``bool``, ``vector``, and for existing OpenVINO defined types.

  4. Override ``evaluate`` method with the code that will run when this operation is encountered in the model graph during the model inference. It works only for CPU device and enables OpenVINO runtime to run your arbitrary Python code as a part of model inference. If your operation contains ``evaluate`` method you also need to override the ``has_evaluate`` method which returns `True`, this method allows to get information about availability of ``evaluate`` method for the operation.

  5. Override the ``clone_with_new_inputs``, which is an optional method that graph manipulation routines to create copies of this operation and connect it to different nodes during optimization.

.. tab-item:: C++ :sync: cpp

  To add your custom operation, create a new class that extends ``ov::Op``, which is in turn derived from ``ov::Node``, the base class for all graph operations in OpenVINO™. To add ``ov::Op``, include the next file:


  .. doxygensnippet:: src/core/template_extension/identity.hpp
     :language: cpp
     :fragment: [op:common_include]
  
  Follow the steps below to add a custom operation:

  1. Add the ``OPENVINO_OP`` macro. The type info of an operation consists of a string operation identifier and a string for operation version.

  2. Implement default constructor and constructors that optionally take the operation inputs and attributes as parameters.

  3. Override the shape inference method ``validate_and_infer_types``. This method is called multiple times during graph manipulations to determine the shapes and element types of the operations outputs. To access the input shapes and input element types, use the ``get_input_partial_shape()`` and ``get_input_element_type()`` methods of ``ov::Node``. Set the inferred shape and element type of the output using ``set_output_type``.

  4. Override the ``clone_with_new_inputs`` method, which enables graph manipulation routines to create copies of this operation and connect it to different nodes during optimization.

  5. Override the ``visit_attributes`` method, which enables serialization and deserialization of operation attributes. An ``AttributeVisitor`` is passed to the method, and the implementation is expected to walk over all the attributes in the op using the type-aware ``on_attribute`` helper. Helpers are already implemented for standard C++ types like ``int64_t``, ``float``, ``bool``, ``vector``, and for existing OpenVINO defined types.

  6. Override ``evaluate`` method, which enables fallback of some devices to this implementation and the application of constant folding if there is a custom operation on the constant branch. If your operation contains ``evaluate`` method you also need to override the ``has_evaluate`` method, this method allows to get information about availability of ``evaluate`` method for the operation.

Based on that, declaration of an operation class can look as follows:

Operation Constructors ++++++++++++++++++++++

OpenVINO™ operation contains two constructors:

  • Default constructor, which enables you to create an operation without attributes
  • Constructor that creates and validates an operation with specified inputs and attributes

.. tab-set::

.. tab-item:: Python :sync: py

  .. doxygensnippet:: docs/articles_en/assets/snippets/ov_custom_op.py
     :language: python
     :fragment: [op:ctor]

.. tab-item:: C++ :sync: cpp

  .. doxygensnippet:: src/core/template_extension/identity.cpp
     :language: cpp
     :fragment: [op:ctor]

validate_and_infer_types() ++++++++++++++++++++++++++++++

ov::Node::validate_and_infer_types method validates operation attributes and calculates output shapes using attributes of the operation.

.. tab-set::

.. tab-item:: Python :sync: py

  .. doxygensnippet:: docs/articles_en/assets/snippets/ov_custom_op.py
     :language: python
     :fragment: [op:validate]

.. tab-item:: C++ :sync: cpp

  .. doxygensnippet:: src/core/template_extension/identity.cpp
     :language: cpp
     :fragment: [op:validate]

clone_with_new_inputs() +++++++++++++++++++++++++++

ov::Node::clone_with_new_inputs method creates a copy of the operation with new inputs.

.. tab-set::

.. tab-item:: Python :sync: py

  .. doxygensnippet:: docs/articles_en/assets/snippets/ov_custom_op.py
     :language: python
     :fragment: [op:copy]

.. tab-item:: C++ :sync: cpp

  .. doxygensnippet:: src/core/template_extension/identity.cpp
     :language: cpp
     :fragment: [op:copy]

visit_attributes() ++++++++++++++++++++++

ov::Node::visit_attributes method enables you to visit all operation attributes.

.. tab-set::

.. tab-item:: Python :sync: py

  .. doxygensnippet:: docs/articles_en/assets/snippets/ov_custom_op.py
     :language: python
     :fragment: [op:visit_attributes]

.. tab-item:: C++ :sync: cpp

  .. doxygensnippet:: src/core/template_extension/identity.cpp
     :language: cpp
     :fragment: [op:visit_attributes]

evaluate() and has_evaluate() +++++++++++++++++++++++++++++++++

ov::Node::evaluate method enables you to apply constant folding to an operation.

.. tab-set::

.. tab-item:: Python :sync: py

  .. doxygensnippet:: docs/articles_en/assets/snippets/ov_custom_op.py
     :language: python
     :fragment: [op:evaluate]

.. tab-item:: C++ :sync: cpp

  .. doxygensnippet:: src/core/template_extension/identity.cpp
     :language: cpp
     :fragment: [op:evaluate]