* 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
16 lines
327 B
Python
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]
|