ONE - On-device Neural Engine
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
__init__.py
Go to the documentation of this file.
1# Define the public API of the onert package
2__all__ = ["infer", "tensorinfo", "experimental"]
3
4# Import and expose the infer module's functionalities
5from . import infer
6
7# Import and expose tensorinfo
8from .common import tensorinfo as tensorinfo
9
10# Import and expose the experimental module's functionalities
11from . import experimental