From 240c23fdb489523e3aca2ab6fd95794fe2df17e7 Mon Sep 17 00:00:00 2001 From: Anastasia Kuporosova Date: Wed, 29 Jan 2025 23:00:45 +0000 Subject: [PATCH] small update --- .../openvino-extensibility/custom-openvino-operations.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/articles_en/documentation/openvino-extensibility/custom-openvino-operations.rst b/docs/articles_en/documentation/openvino-extensibility/custom-openvino-operations.rst index ebf76657570603..80a48748e4aceb 100644 --- a/docs/articles_en/documentation/openvino-extensibility/custom-openvino-operations.rst +++ b/docs/articles_en/documentation/openvino-extensibility/custom-openvino-operations.rst @@ -61,7 +61,7 @@ Operation Class 4. Override ``evaluate`` method, which enables fallback of a CPU device 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. - 5. 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 ``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. Based on that, declaration of an operation class can look as follows: