-
Notifications
You must be signed in to change notification settings - Fork 512
/
Copy pathTARGETS
34 lines (31 loc) · 845 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
# @noautodeps
load("@fbcode_macros//build_defs:python_library.bzl", "python_library")
python_library(
name = "node_visitor",
srcs = ["node_visitor.py"],
deps = [
"//executorch/backends/arm:tosa_mapping",
"//executorch/backends/arm:tosa_specification",
],
)
python_library(
name = "ops",
srcs = glob(["op_*.py", "ops_*.py"]),
deps = [
"fbsource//third-party/serialization_lib/python/tosa:tosa",
":node_visitor",
"//executorch/backends/arm:tosa_mapping",
"//executorch/backends/arm:tosa_quant_utils",
"//executorch/backends/arm:tosa_utils",
"//executorch/backends/arm/_passes:passes",
"//executorch/exir:lib",
],
)
python_library(
name = "lib",
srcs = ["__init__.py"],
deps = [
":node_visitor",
":ops",
],
)