try to remove redandant functions (#18761)

* try to remove redandant functions

* remove redundant imports

---------

Co-authored-by: Michal Lukaszewski <michal.lukaszewski@intel.com>
This commit is contained in:
Anastasia Kuporosova 2023-08-17 18:11:39 +02:00 committed by GitHub
parent 318009f8d5
commit f51f0c7a6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 0 additions and 34 deletions

View File

@ -4,10 +4,6 @@
# flake8: noqa
from openvino.utils import _add_openvino_libs_to_search_path
_add_openvino_libs_to_search_path()
from openvino._pyopenvino import get_version
__version__ = get_version()

View File

@ -8,10 +8,6 @@ Low level wrappers for the FrontEnd C++ API.
# flake8: noqa
from openvino.utils import _add_openvino_libs_to_search_path
_add_openvino_libs_to_search_path()
from openvino._pyopenvino import get_version
__version__ = get_version()

View File

@ -8,10 +8,6 @@ Low level wrappers for the FrontEnd C++ API.
# flake8: noqa
from openvino.utils import _add_openvino_libs_to_search_path
_add_openvino_libs_to_search_path()
try:
from openvino.frontend.onnx.py_onnx_frontend import ConversionExtensionONNX as ConversionExtension
from openvino.frontend.onnx.py_onnx_frontend import OpExtensionONNX as OpExtension

View File

@ -8,11 +8,6 @@ Low level wrappers for the FrontEnd C++ API.
# flake8: noqa
from openvino.utils import _add_openvino_libs_to_search_path
_add_openvino_libs_to_search_path()
try:
from openvino.frontend.paddle.py_paddle_frontend import ConversionExtensionPaddle as ConversionExtension
from openvino.frontend.paddle.py_paddle_frontend import OpExtensionPaddle as OpExtension

View File

@ -8,11 +8,6 @@ Low level wrappers for the FrontEnd C++ API.
# flake8: noqa
from openvino.utils import _add_openvino_libs_to_search_path
_add_openvino_libs_to_search_path()
try:
from openvino.frontend.pytorch.py_pytorch_frontend import _FrontEndPytorchDecoder as Decoder
from openvino.frontend.pytorch.py_pytorch_frontend import _Type as DecoderType

View File

@ -8,10 +8,6 @@ Low level wrappers for the FrontEnd C++ API.
# flake8: noqa
from openvino.utils import _add_openvino_libs_to_search_path
_add_openvino_libs_to_search_path()
try:
from openvino.frontend.tensorflow.py_tensorflow_frontend import _FrontEndPyGraphIterator as GraphIterator
from openvino.frontend.tensorflow.py_tensorflow_frontend import ConversionExtensionTensorflow as ConversionExtension

View File

@ -8,10 +8,6 @@ Low level wrappers for the PrePostProcessing C++ API.
# flake8: noqa
from openvino.utils import _add_openvino_libs_to_search_path
_add_openvino_libs_to_search_path()
from openvino._pyopenvino import get_version
__version__ = get_version()

View File

@ -5,10 +5,6 @@
"""openvino module namespace, exposing factory functions for all ops and other classes."""
# noqa: F401
from openvino.utils import _add_openvino_libs_to_search_path
_add_openvino_libs_to_search_path()
from openvino._pyopenvino import get_version
__version__ = get_version()