File tree Expand file tree Collapse file tree 2 files changed +20
-18
lines changed Expand file tree Collapse file tree 2 files changed +20
-18
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ runtime.python_library(
14
14
"ethosu/partitioner.py"
15
15
],
16
16
deps = [
17
- ":arm_partitioner",
17
+ ":arm_vela",
18
+ "//executorch/backends/arm/tosa:arm_partitioner",
18
19
]
19
20
)
20
21
runtime.python_library(
@@ -25,7 +26,7 @@ runtime.python_library(
25
26
"vgf/partitioner.py"
26
27
],
27
28
deps = [
28
- ":arm_partitioner",
29
+ "//executorch/backends/arm/tosa :arm_partitioner",
29
30
]
30
31
)
31
32
runtime.python_library(
@@ -50,21 +51,6 @@ runtime.python_library(
50
51
"//executorch/exir:lib",
51
52
],
52
53
)
53
- runtime.python_library(
54
- name = "arm_partitioner",
55
- srcs = [
56
- "tosa/backend.py",
57
- "tosa/partitioner.py",
58
- ],
59
- deps = [
60
- ":arm_backend",
61
- ":constants",
62
- "//executorch/backends/arm/debug:schema",
63
- "//executorch/backends/arm/operator_support:operator_support",
64
- "//executorch/backends/arm/_passes:passes",
65
- "//executorch/exir:lib",
66
- ],
67
- )
68
54
runtime.python_library(
69
55
name = "arm_backend",
70
56
srcs = [
@@ -77,7 +63,6 @@ runtime.python_library(
77
63
"fbsource//third-party/tosa_tools/v1.00/serialization_lib/python/serializer:serializer",
78
64
"fbsource//third-party/tosa_tools/v0.80/serialization_lib/python/tosa:tosa",
79
65
"fbsource//third-party/tosa_tools/v1.00/serialization_lib/python/tosa:tosa",
80
- ":arm_vela",
81
66
":process_node",
82
67
"//executorch/backends/arm/operators:lib",
83
68
"//executorch/backends/arm/operators:node_visitor",
Original file line number Diff line number Diff line change @@ -59,3 +59,20 @@ runtime.python_library(
59
59
":specification",
60
60
],
61
61
)
62
+
63
+ runtime.python_library(
64
+ name = "arm_partitioner",
65
+ srcs = [
66
+ "backend.py",
67
+ "partitioner.py",
68
+ ],
69
+ deps = [
70
+ "//executorch/backends/arm:arm_backend",
71
+ "//executorch/backends/arm:constants",
72
+ "//executorch/backends/arm:process_node",
73
+ "//executorch/backends/arm/debug:schema",
74
+ "//executorch/backends/arm/operator_support:operator_support",
75
+ "//executorch/backends/arm/_passes:passes",
76
+ "//executorch/exir:lib",
77
+ ],
78
+ )
You can’t perform that action at this time.
0 commit comments