File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed
backends/xnnpack/test/tester Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ runtime.python_library(
17
17
"//caffe2:torch",
18
18
"//executorch/backends/xnnpack/partition:xnnpack_partitioner",
19
19
"//executorch/backends/xnnpack/utils:xnnpack_utils",
20
+ "//executorch/devtools/visualization:visualization",
20
21
"//executorch/exir:lib",
21
22
"//executorch/exir/_serialize:lib",
22
23
"//executorch/exir/backend:backend_api",
Original file line number Diff line number Diff line change
1
+ # Any targets that should be shared between fbcode and xplat must be defined in
2
+ # targets.bzl. This file can contain fbcode-only targets.
3
+ load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime")
4
+
5
+ oncall("executorch")
6
+
7
+ runtime.python_library(
8
+ name = "visualization",
9
+ srcs = [
10
+ "__init__.py",
11
+ "visualization_utils.py",
12
+ ],
13
+ visibility = [
14
+ "//executorch/...",
15
+ "@EXECUTORCH_CLIENTS",
16
+ ],
17
+ deps = [
18
+ "//caffe2:torch",
19
+ "//executorch/exir:lib",
20
+ "//executorch/exir/_serialize:lib",
21
+ ],
22
+ )
23
+
24
+ runtime.python_library(
25
+ name = "test",
26
+ srcs = [
27
+ "visualization_utils_test.py",
28
+ ],
29
+ deps = [
30
+ ":visualization",
31
+ ]
32
+ )
You can’t perform that action at this time.
0 commit comments