-
Notifications
You must be signed in to change notification settings - Fork 527
/
Copy pathTARGETS
41 lines (37 loc) · 1.07 KB
/
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
load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime")
load(":targets.bzl", "define_common_targets")
oncall("executorch")
define_common_targets()
runtime.python_library(
name = "xnnpack_preprocess",
srcs = [
"xnnpack_preprocess.py",
],
visibility = [
"//executorch/...",
"@EXECUTORCH_CLIENTS",
],
deps = [
"//executorch/backends/transforms:lib",
"//executorch/backends/xnnpack/_passes:xnnpack_passes",
"//executorch/backends/xnnpack/operators:operators",
"//executorch/backends/xnnpack/serialization:xnnpack_serializer",
"//executorch/exir:graph_module",
"//executorch/exir/backend:backend_details",
],
)
runtime.python_library(
name = "xnnpack_delegate",
srcs = [
"__init__.py",
],
visibility = [
"//executorch/...",
"@EXECUTORCH_CLIENTS",
],
deps = [
":xnnpack_preprocess",
"//executorch/backends/xnnpack/partition:xnnpack_partitioner",
"//executorch/backends/xnnpack/utils:xnnpack_utils",
],
)