Skip to content

Commit e644be5

Browse files
committed
Fix _factory buck issue
Signed-off-by: Erik Lundell <[email protected]> Change-Id: If014aa0fae6a0c16ace80a309b2bc490da69025c
1 parent 5b7c1cd commit e644be5

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

backends/arm/TARGETS

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,3 +106,17 @@ runtime.python_library(
106106
"//caffe2:torch",
107107
]
108108
)
109+
runtime.python_library(
110+
name = "_factory",
111+
srcs = [
112+
"util/_factory.py"
113+
],
114+
deps = [
115+
":ethosu",
116+
":vgf",
117+
":arm_compile_spec",
118+
"//executorch/backends/arm/quantizer:lib",
119+
"//executorch/exir/backend:operator_support",
120+
"//executorch/exir/backend:compile_spec_schema",
121+
]
122+
)

backends/arm/test/TARGETS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Copyright 2025 Arm Limited and/or its affiliates.
2+
#
3+
# This source code is licensed under the BSD-style license found in the
4+
# LICENSE file in the root directory of this source tree.
5+
16
load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime")
27
load(":targets.bzl", "define_arm_tests")
38

@@ -58,6 +63,7 @@ runtime.python_library(
5863
"//executorch/backends/arm/quantizer:lib",
5964
"//executorch/backends/arm/tosa:mapping",
6065
"//executorch/backends/arm:vgf",
66+
"//executorch/backends/arm:_factory"
6167
"//executorch/devtools/backend_debug:delegation_info",
6268
"//executorch/exir/backend:operator_support",
6369
"fbsource//third-party/pypi/tabulate:tabulate",

0 commit comments

Comments
 (0)