Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Docs][PyOV] Documentation for Custom Python Operation #25615

Merged
merged 34 commits into from
Feb 3, 2025
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
205044d
[Docs][PyOV] Documentation for Custom Python Operation
akuporos Jul 17, 2024
13c0a10
make the snippet work
akuporos Jul 18, 2024
5b7f90e
update dpc
akuporos Jul 18, 2024
e0f40f9
try to fix doc build
akuporos Jul 18, 2024
8a417a6
Merge branch 'master' into akup/custom-op-docs
akuporos Jul 22, 2024
95ba862
change a little bit
akuporos Jul 22, 2024
091af42
Update docs/articles_en/documentation/openvino-extensibility/custom-o…
akuporos Jul 22, 2024
3cb000a
more changes
akuporos Jul 22, 2024
9939776
Update docs/articles_en/documentation/openvino-extensibility.rst
akuporos Jul 22, 2024
f0c3733
Merge branch 'master' into akup/custom-op-docs
mlukasze Jul 23, 2024
4e20847
Merge branch 'master' into akup/custom-op-docs
akuporos Jul 30, 2024
a237a03
Update docs/articles_en/documentation/openvino-extensibility.rst
akuporos Jul 30, 2024
753562d
Update docs/articles_en/documentation/openvino-extensibility.rst
akuporos Jul 30, 2024
9ba1424
Update docs/articles_en/documentation/openvino-extensibility.rst
akuporos Jul 30, 2024
d25ac84
Update docs/articles_en/documentation/openvino-extensibility/custom-o…
akuporos Jul 30, 2024
1c4732f
apply comment
akuporos Jul 31, 2024
110fd42
Merge branch 'master' into akup/custom-op-docs
akuporos Sep 6, 2024
c4d1de8
Update docs/articles_en/documentation/openvino-extensibility/custom-o…
kblaszczak-intel Sep 12, 2024
815bba4
Merge branch 'master' into akup/custom-op-docs
akuporos Sep 13, 2024
32d9076
Merge branch 'master' into akup/custom-op-docs
akuporos Sep 28, 2024
0d0543f
Merge branch 'master' into akup/custom-op-docs
akuporos Oct 14, 2024
b505644
Merge branch 'master' into akup/custom-op-docs
kblaszczak-intel Oct 28, 2024
77040b4
Merge branch 'master' into akup/custom-op-docs
akuporos Jan 16, 2025
ec254d7
some updates
akuporos Jan 23, 2025
27673d0
Merge branch 'master' into akup/custom-op-docs
mlukasze Jan 24, 2025
c3ceabc
update custom-op-doc
akuporos Jan 28, 2025
f051ce1
update extensions
akuporos Jan 28, 2025
7ca4439
apply comments
akuporos Jan 28, 2025
bc26774
Merge branch 'master' into akup/custom-op-docs
akuporos Jan 29, 2025
240c23f
small update
akuporos Jan 29, 2025
7ecd86d
Update docs/articles_en/documentation/openvino-extensibility/custom-o…
akuporos Jan 29, 2025
4b76a4c
Apply suggestions from code review
sgolebiewski-intel Feb 3, 2025
3c33e61
Apply suggestions from code review
sgolebiewski-intel Feb 3, 2025
1aaeca4
Apply suggestions from code review
sgolebiewski-intel Feb 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update docs/articles_en/documentation/openvino-extensibility.rst
  • Loading branch information
akuporos authored Jul 30, 2024
commit a237a037cdb8c942dd6f7ab15663d26881dc9220
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ The ``Identity`` is a custom operation class defined in :doc:`Custom Operation G

The Python API now supports the implementation of custom OpenVINO operations, allowing for direct integration within Python code. Even if custom OpenVINO operation is implemented in C++ and loaded into the runtime by a shared library, there is still no way to add a frontend mapping extension that refers to this custom operation. In this case, use C++ shared library approach to implement both operations semantics and framework mapping.

Python can still be used to map and decompose operations when only operations from the standard OpenVINO operation set are used.
Python can still be used to map and decompose operations when operations from the standard OpenVINO operation set and custom operation implemented in Python are used.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But only via ConversionExtension in case of Python, right?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes


.. _create_a_library_with_extensions:

Expand Down
Loading