File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff 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+ )
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 = "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+ )
You can’t perform that action at this time.
0 commit comments