forked from pytorch/executorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUCK
More file actions
27 lines (25 loc) · 732 Bytes
/
BUCK
File metadata and controls
27 lines (25 loc) · 732 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
load("@fbcode_macros//build_defs:build_file_migration.bzl", "fbcode_target", "non_fbcode_target")
load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime")
fbcode_target(_kind = runtime.python_library,
name = "preprocess",
srcs = [
"preprocess.py"
],
visibility = ["PUBLIC"],
deps = [
"//executorch/exir/_serialize:lib",
"//executorch/exir/backend:backend_api",
"//executorch/exir/passes:lib",
"fbsource//third-party/mediatek/neuropilot-express-sdk:sdk",
],
)
fbcode_target(_kind = runtime.python_library,
name = "partitioner",
srcs = [
"partitioner.py"
],
visibility = ["PUBLIC"],
deps = [
":preprocess",
],
)