Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions backends/arm/test/misc/TARGETS
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Copyright 2025 Arm Limited and/or its affiliates.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.

load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime")

oncall("executorch")

runtime.python_library(
name = "dw_convs_shared_weights_module",
srcs = ["test_dw_convs_with_shared_weights.py"],
deps = [
"//executorch/backends/arm/test:arm_tester_lib",
],
)
1 change: 1 addition & 0 deletions backends/arm/test/targets.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ def define_arm_tests():
deps = [
"//executorch/backends/arm/test/tester/fb:arm_tester_fb" if is_fbcode else "//executorch/backends/arm/test:arm_tester",
"//executorch/backends/arm/test:conftest",
"//executorch/backends/arm/test/misc:dw_convs_shared_weights_module",
"//executorch/backends/arm:ethosu",
"//executorch/backends/arm/tosa:compile_spec",
"//executorch/backends/arm/tosa:partitioner",
Expand Down
Loading