forked from pytorch/executorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTARGETS
More file actions
27 lines (25 loc) · 815 Bytes
/
TARGETS
File metadata and controls
27 lines (25 loc) · 815 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
load("@fbcode_macros//build_defs:python_library.bzl", "python_library")
oncall("executorch")
python_library(
# @autodeps-skip for some reason autodeps thinks this target
# needs to depend on exir:lib which it doesn't.
name = "serialize",
srcs = [
"export_serialize.py",
"schema.py",
"schema_check.py",
"serialize.py",
"union.py",
],
deps = [
"fbsource//third-party/pypi/sympy:sympy",
"//caffe2:torch",
"//executorch/exir:delegate",
"//executorch/exir:lowered_backend_module",
"//executorch/exir:memory",
"//executorch/exir/backend:compile_spec_schema",
"//executorch/exir/dialects:lib",
"//executorch/exir/dialects/backend:lib",
"//executorch/exir/dialects/edge:lib",
],
)