forked from pytorch/executorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTARGETS
More file actions
29 lines (26 loc) · 667 Bytes
/
TARGETS
File metadata and controls
29 lines (26 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Any targets that should be shared between fbcode and xplat must be defined in
# targets.bzl. This file can contain fbcode-only targets.
load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime")
oncall("executorch")
runtime.python_library(
name = "visualization",
srcs = [
"__init__.py",
"visualization_utils.py",
],
visibility = ["PUBLIC"],
deps = [
"//caffe2:torch",
"//executorch/exir:lib",
"//executorch/exir/_serialize:lib",
],
)
runtime.python_library(
name = "test",
srcs = [
"visualization_utils_test.py",
],
deps = [
":visualization",
]
)