-
Notifications
You must be signed in to change notification settings - Fork 975
Expand file tree
/
Copy path__init__.py
More file actions
17 lines (15 loc) · 959 Bytes
/
__init__.py
File metadata and controls
17 lines (15 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
"""TensorRT converters for ExecuTorch operations."""
# Import converters to trigger registration via @converter decorator
from executorch.backends.nvidia.tensorrt.converters import add # noqa: F401
from executorch.backends.nvidia.tensorrt.converters import addmm # noqa: F401
from executorch.backends.nvidia.tensorrt.converters import div # noqa: F401
from executorch.backends.nvidia.tensorrt.converters import mm # noqa: F401
from executorch.backends.nvidia.tensorrt.converters import mul # noqa: F401
from executorch.backends.nvidia.tensorrt.converters import permute_copy # noqa: F401
from executorch.backends.nvidia.tensorrt.converters import relu # noqa: F401
from executorch.backends.nvidia.tensorrt.converters import sub # noqa: F401