ONE - On-device Neural Engine
Loading...
Searching...
No Matches
__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