Skip to content

Commit fc50da1

Browse files
Eashan Gargfreddan80
authored andcommitted
Buckify arm/test files
Summary: Buckify non-test arm files, to allow ArmTester to be used internally Differential Revision: D66283212
1 parent 2f61fbb commit fc50da1

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

backends/arm/TARGETS

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,3 +110,14 @@ python_library(
110110
"//executorch/backends/arm/operators:node_visitor",
111111
],
112112
)
113+
114+
python_library(
115+
name = "arm_model_evaluator",
116+
src = [
117+
"util/arm_model_evaluator.py",
118+
],
119+
typing = True,
120+
deps = [
121+
"//caffe2:torch",
122+
]
123+
)

backends/arm/test/TARGETS

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
load("@fbcode_macros//build_defs:python_library.bzl", "python_library")
2+
3+
python_library(
4+
name = "common",
5+
srcs = ["common.py"],
6+
deps = [
7+
"//executorch/backends/xnnpack/test/tester:tester",
8+
"//executorch/backends/arm:arm_backend",
9+
"//executorch/exir:lib",
10+
"//executorch/exir/backend:compile_spec_schema",
11+
]
12+
)
13+
14+
python_library(
15+
name = "runner_utils",
16+
srcs = ["runner_utils.py"],
17+
deps = [
18+
"//executorch/backends/xnnpack/test/tester:tester",
19+
"//executorch/backends/arm:arm_backend",
20+
"//executorch/exir:lib",
21+
"//executorch/exir/backend:compile_spec_schema",
22+
]
23+
)

0 commit comments

Comments
 (0)