Skip to content

Commit 59c359f

Browse files
tarun292facebook-github-bot
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
1 parent 1a6ba2e commit 59c359f

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
@@ -49,7 +49,7 @@ python_library(
4949
python_library(
5050
name = "passes",
5151
srcs = [
52-
"passes.py",
52+
"_passes.py",
5353
],
5454
deps = [
5555
":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)