Files
openvino/docs/snippets/ov_extensions.py
Ilya Churaev 1c18733ade Changed location of extensibility guide (#10433)
* Changed location of extensibility guide

* Removed hardware kernels legacy documentation

* Changed all extension guild to new API

* Removed Custom_Layers_Guide

* Fixed build

* Fixed some moments

* Update docs/Extensibility_UG/Intro.md

* Fixed build

* Added more examples

* Fixed typo

* Fixed comments

* Extend library topic

* Fixed typo
2022-02-24 15:50:31 +03:00

16 lines
327 B
Python

# Copyright (C) 2018-2022 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
#
import openvino.runtime as ov
#! [add_extension]
# Not implemented
#! [add_extension]
#! [add_extension_lib]
core = ov.Core()
# Load extensions library to ov::Core
core.add_extension("openvino_template_extension.so")
#! [add_extension_lib]