From 4703196f5c0a9038270b83564f9a1e81e8897a84 Mon Sep 17 00:00:00 2001 From: Sebastian Golebiewski Date: Tue, 22 Aug 2023 11:21:56 +0200 Subject: [PATCH] link-to-frontend (#19178) --- docs/Extensibility_UG/frontend_extensions.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/Extensibility_UG/frontend_extensions.md b/docs/Extensibility_UG/frontend_extensions.md index ed632bcae2c..1c3cc07f472 100644 --- a/docs/Extensibility_UG/frontend_extensions.md +++ b/docs/Extensibility_UG/frontend_extensions.md @@ -301,11 +301,19 @@ This mapping also specifies the input name "X" and output name "Out". The last step is to register this custom operation by following: - .. doxygensnippet:: docs/snippets/ov_extensions.cpp :language: cpp :fragment: [frontend_extension_framework_map_macro_add_extension] +.. important:: + + To map an operation on a specific framework, you have to link to a respective + frontend (``openvino::frontend::onnx``, ``openvino::frontend::tensorflow``, ``openvino::frontend::paddle``) in the ``CMakeLists.txt`` file: + + .. code-block:: sh + + target_link_libraries(${TARGET_NAME} PRIVATE openvino::frontend::onnx) + Mapping to Multiple Operations with ConversionExtension #######################################################