-
Notifications
You must be signed in to change notification settings - Fork 524
/
Copy pathTARGETS
45 lines (41 loc) · 935 Bytes
/
TARGETS
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
load("@fbcode_macros//build_defs:python_library.bzl", "python_library")
oncall("executorch")
python_library(
name = "lib",
srcs = [
"__init__.py",
],
deps = [
":capture",
":config",
],
)
python_library(
name = "capture",
srcs = [
"_capture.py",
],
deps = [
":config",
"//caffe2:torch",
"//executorch/exir:error",
"//executorch/exir:tracer",
"//executorch/exir/program:lib",
"//executorch/exir/program:program",
"//executorch/exir/verification:verifier",
],
)
python_library(
name = "config",
srcs = [
"_config.py",
],
deps = [
"//caffe2:torch",
"//executorch/exir:dynamic_shape",
"//executorch/exir:pass_manager",
"//executorch/exir:tracer",
"//executorch/exir/passes:lib",
"//executorch/exir/passes:sym_shape_eval_pass",
],
)