-
Notifications
You must be signed in to change notification settings - Fork 864
Expand file tree
/
Copy pathTARGETS
More file actions
43 lines (39 loc) · 1021 Bytes
/
TARGETS
File metadata and controls
43 lines (39 loc) · 1021 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime")
oncall("executorch")
runtime.python_library(
name = "xnnpack_recipes",
srcs = [
"__init__.py",
],
visibility = ["PUBLIC"],
deps = [
"//executorch/export:recipe_registry",
":xnnpack_recipe_provider",
":xnnpack_recipe_types",
],
)
runtime.python_library(
name = "xnnpack_recipe_provider",
srcs = [
"xnnpack_recipe_provider.py",
],
visibility = ["PUBLIC"],
deps = [
"//caffe2:torch",
"//executorch/export:lib",
"//executorch/runtime:runtime", # @manual
"//executorch/backends/xnnpack/quantizer:xnnpack_quantizer",
"//executorch/backends/xnnpack/partition:xnnpack_partitioner",
":xnnpack_recipe_types",
],
)
runtime.python_library(
name = "xnnpack_recipe_types",
srcs = [
"xnnpack_recipe_types.py",
],
visibility = ["PUBLIC"],
deps = [
"//executorch/export:recipe",
],
)