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(
12
12
":arm_partitioner",
13
13
]
14
14
)
15
+ python_library(
16
+ name = "constants",
17
+ srcs = [
18
+ "constants.py",
19
+ ],
20
+ deps = [
21
+ "//executorch/exir/dialects:lib",
22
+ ],
23
+ )
15
24
python_library(
16
25
name = "arm_partitioner",
17
26
srcs = [
@@ -22,6 +31,7 @@ python_library(
22
31
],
23
32
deps = [
24
33
":arm_backend",
34
+ ":constants",
25
35
"//executorch/backends/arm/operator_support:operator_support",
26
36
"//executorch/backends/arm/_passes:passes",
27
37
"//executorch/exir:lib",
@@ -90,6 +100,7 @@ python_library(
90
100
"fbsource//third-party/tosa_tools/v1.00/serialization_lib/python/serializer:serializer",
91
101
"fbsource//third-party/tosa_tools/v0.80/serialization_lib/python/tosa:tosa",
92
102
"fbsource//third-party/tosa_tools/v1.00/serialization_lib/python/tosa:tosa",
103
+ ":constants",
93
104
":tosa_mapping",
94
105
"//executorch/exir/dialects:lib",
95
106
],
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ python_library(
4
4
name = "passes",
5
5
srcs = glob(["*.py"]),
6
6
deps = [
7
+ "//executorch/backends/arm:constants",
7
8
"//executorch/backends/arm:tosa_quant_utils",
8
9
"//executorch/backends/arm:tosa_utils",
9
10
"//executorch/backends/arm/tosa/dialect:lib",
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ python_library(
4
4
name = "operator_support",
5
5
srcs = glob(["*.py"]),
6
6
deps = [
7
+ "//executorch/backends/arm:constants",
7
8
"//executorch/backends/arm/_passes:passes",
8
9
"//executorch/backends/arm:tosa_specification",
9
10
"//executorch/backends/transforms:remove_getitem_op",
You can’t perform that action at this time.
0 commit comments