File tree Expand file tree Collapse file tree 3 files changed +13
-0
lines changed Expand file tree Collapse file tree 3 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,15 @@ python_library(
1212 ":arm_partitioner",
1313 ]
1414)
15+ python_library(
16+ name = "constants",
17+ srcs = [
18+ "constants.py",
19+ ],
20+ deps = [
21+ "//executorch/exir/dialects:lib",
22+ ],
23+ )
1524python_library(
1625 name = "arm_partitioner",
1726 srcs = [
@@ -22,6 +31,7 @@ python_library(
2231 ],
2332 deps = [
2433 ":arm_backend",
34+ ":constants",
2535 "//executorch/backends/arm/operator_support:operator_support",
2636 "//executorch/backends/arm/_passes:passes",
2737 "//executorch/exir:lib",
@@ -90,6 +100,7 @@ python_library(
90100 "fbsource//third-party/tosa_tools/v1.00/serialization_lib/python/serializer:serializer",
91101 "fbsource//third-party/tosa_tools/v0.80/serialization_lib/python/tosa:tosa",
92102 "fbsource//third-party/tosa_tools/v1.00/serialization_lib/python/tosa:tosa",
103+ ":constants",
93104 ":tosa_mapping",
94105 "//executorch/exir/dialects:lib",
95106 ],
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ python_library(
44 name = "passes",
55 srcs = glob(["*.py"]),
66 deps = [
7+ "//executorch/backends/arm:constants",
78 "//executorch/backends/arm:tosa_quant_utils",
89 "//executorch/backends/arm:tosa_utils",
910 "//executorch/backends/arm/tosa/dialect:lib",
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ python_library(
44 name = "operator_support",
55 srcs = glob(["*.py"]),
66 deps = [
7+ "//executorch/backends/arm:constants",
78 "//executorch/backends/arm/_passes:passes",
89 "//executorch/backends/arm:tosa_specification",
910 "//executorch/backends/transforms:remove_getitem_op",
You can’t perform that action at this time.
0 commit comments