forked from pytorch/executorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ease MPS backend and partitioner imports. (pytorch#3714)
Summary: Pull Request resolved: pytorch#3714 . Reviewed By: kirklandsign Differential Revision: D57709407 fbshipit-source-id: 3e680cd046d3e74b74c4ff1960442f6868661a60
- Loading branch information
1 parent
ed2da4f
commit 3c43fd6
Showing
5 changed files
with
25 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# | ||
# Copyright (c) 2023 Apple Inc. All rights reserved. | ||
# Provided subject to the LICENSE file in the top level directory. | ||
# | ||
|
||
from .mps_preprocess import MPSBackend | ||
|
||
__all__ = [ | ||
MPSBackend, | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# | ||
# Copyright (c) 2023 Apple Inc. All rights reserved. | ||
# Provided subject to the LICENSE file in the top level directory. | ||
# | ||
|
||
from .mps_partitioner import MPSPartitioner | ||
|
||
__all__ = [ | ||
MPSPartitioner, | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters