Skip to content

Commit 91f3df1

Browse files
lucylqfacebook-github-bot
authored andcommitted
Fix arm dep for jarvis test
Summary: D65876547, #6810 broke internal Jarvis test. This diff adds the missing buck dependencies. Differential Revision: D65901748
1 parent dd8f182 commit 91f3df1

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

backends/arm/TARGETS

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,27 @@ python_library(
2626
"fbsource//third-party/serialization_lib/python/serializer:serializer",
2727
"fbsource//third-party/serialization_lib/python/tosa:tosa",
2828
":arm_vela",
29+
":process_node",
2930
"//executorch/backends/arm/operators:lib",
3031
"//executorch/backends/arm/operators:node_visitor",
3132
"//executorch/backends/arm/_passes:passes",
3233
],
3334
)
3435

36+
python_library(
37+
name = "process_node",
38+
srcs = ["process_node.py"],
39+
typing = True,
40+
deps = [
41+
"fbsource//third-party/serialization_lib/python/tosa:tosa",
42+
"//executorch/backends/arm/operators:node_visitor",
43+
"//executorch/backends/arm:tosa_mapping",
44+
"//executorch/backends/arm:tosa_quant_utils",
45+
"//executorch/backends/arm:tosa_utils",
46+
"//executorch/exir:lib",
47+
],
48+
)
49+
3550
python_library(
3651
name = "arm_vela",
3752
srcs = [

0 commit comments

Comments
 (0)