xref: /aosp_15_r20/external/executorch/backends/apple/mps/__init__.py (revision 523fa7a60841cd1ecfb9cc4201f1ca8b03ed023a)
1#
2#  Copyright (c) 2023 Apple Inc. All rights reserved.
3#  Provided subject to the LICENSE file in the top level directory.
4#
5
6from .mps_preprocess import MPSBackend
7
8__all__ = [
9    MPSBackend,
10]
11