Skip to content

Commit 688151b

Browse files
tarun292pytorchbot
authored andcommitted
Move cadence.aot.passes to cadence.aot._passes (#5921)
Summary: Changing cadence.aot.passes to cadence.aot._passes to indicate that these passes are not covered under the API stability guarantee. Pull Request resolved: #5921 Reviewed By: helunwencser, mcremon-meta Differential Revision: D63926847 fbshipit-source-id: 60c4739a813422b92d2f187fceb5e62f65db6380 (cherry picked from commit 59c359f)
1 parent dc496bb commit 688151b

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

backends/cadence/aot/TARGETS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ python_library(
4848
python_library(
4949
name = "passes",
5050
srcs = [
51-
"passes.py",
51+
"_passes.py",
5252
],
5353
deps = [
5454
":utils",
File renamed without changes.

backends/cadence/aot/compiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
import torch
1313

14-
from executorch.backends.cadence.aot.passes import (
14+
from executorch.backends.cadence.aot._passes import (
1515
InitializePipeline,
1616
RemoveNopExpandOpPass,
1717
RemoveZeroSizedCatArgsPass,

0 commit comments

Comments
 (0)