forked from pytorch/executorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTARGETS
More file actions
38 lines (35 loc) · 1000 Bytes
/
TARGETS
File metadata and controls
38 lines (35 loc) · 1000 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
load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime")
oncall("executorch")
runtime.python_library(
name = "lib",
srcs = [
"__init__.py",
],
deps = [
":emit",
],
)
runtime.python_library(
name = "emit",
srcs = [
"_emit_program.py",
"_emitter.py",
],
deps = [
"fbsource//third-party/pypi/typing-extensions:typing-extensions",
"//caffe2:torch",
"//executorch/exir:delegate",
"//executorch/exir:error",
"//executorch/exir:memory",
"//executorch/exir:print_program",
"//executorch/exir:schema",
"//executorch/exir:tensor",
"//executorch/exir:types",
"//executorch/exir:version",
"//executorch/exir/dialects/backend:lib",
"//executorch/exir/dialects/edge:lib",
"//executorch/exir/operator:convert",
"//executorch/exir/passes:prim_ops_py_registry",
"//executorch/extension/pytree:pylib",
],
)