File tree Expand file tree Collapse file tree 3 files changed +14
-1
lines changed
Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ python_library(
99 typing = True,
1010 deps = [
1111 ":arm_backend",
12+ "//executorch/backends/arm/operator_support:operator_support",
1213 "//executorch/backends/arm/_passes:passes",
1314 "//executorch/exir:lib",
1415 ],
Original file line number Diff line number Diff line change 1+ load("@fbcode_macros//build_defs:python_library.bzl", "python_library")
2+
3+ python_library(
4+ name = "operator_support",
5+ srcs = glob(["*.py"]),
6+ typing = True,
7+ deps = [
8+ "//executorch/backends/xnnpack/_passes:xnnpack_passes",
9+ "//executorch/exir:lib",
10+ "//executorch/backends/arm:tosa_specification"
11+ ],
12+ )
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ def get_registered_tosa_support_checks(
5858
5959 tosa_support_checks = {}
6060 for target , tosa_check in _tosa_spec_dicts [tosa_spec ].items ():
61- tosa_support_checks [target ] = tosa_check ()
61+ tosa_support_checks [target ] = tosa_check
6262
6363 return tosa_support_checks
6464
You can’t perform that action at this time.
0 commit comments