forked from pytorch/executorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUCK
More file actions
52 lines (45 loc) · 1.41 KB
/
BUCK
File metadata and controls
52 lines (45 loc) · 1.41 KB
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
46
47
48
49
50
51
52
load("@fbcode_macros//build_defs:build_file_migration.bzl", "fbcode_target", "non_fbcode_target")
oncall("executorch")
# add this empty BUCK file to unblock landing. Without this, we get land error:
# "No build file at xplat/executorch/exir/BUCK when resolving target fbsource//xplat/executorch/exir:."
# !!!! fbcode/executorch/exir/capture/TARGETS was merged into this file, see https://fburl.com/workplace/xl8l9yuo for more info !!!!
load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime")
fbcode_target(_kind = runtime.python_library,
name = "lib",
srcs = [
"__init__.py",
],
deps = [
":capture",
":config",
],
)
fbcode_target(_kind = runtime.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",
],
)
fbcode_target(_kind = runtime.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",
],
)