Skip to content

Commit 7a51dd4

Browse files
authored
Add buck target for dw conv dep
Differential Revision: D89679523 Pull Request resolved: #16369
1 parent c59acfb commit 7a51dd4

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

backends/arm/test/misc/TARGETS

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
6+
load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime")
7+
8+
oncall("executorch")
9+
10+
runtime.python_library(
11+
name = "dw_convs_shared_weights_module",
12+
srcs = ["test_dw_convs_with_shared_weights.py"],
13+
deps = [
14+
"//executorch/backends/arm/test:arm_tester_lib",
15+
],
16+
)

backends/arm/test/targets.bzl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ def define_arm_tests():
6767
deps = [
6868
"//executorch/backends/arm/test/tester/fb:arm_tester_fb" if is_fbcode else "//executorch/backends/arm/test:arm_tester",
6969
"//executorch/backends/arm/test:conftest",
70+
"//executorch/backends/arm/test/misc:dw_convs_shared_weights_module",
7071
"//executorch/backends/arm:ethosu",
7172
"//executorch/backends/arm/tosa:compile_spec",
7273
"//executorch/backends/arm/tosa:partitioner",

0 commit comments

Comments
 (0)