forked from sonos/tract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (46 loc) · 1.09 KB
/
Cargo.toml
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
44
45
46
47
48
49
50
51
52
[workspace]
members = [
"data",
"linalg",
"core",
"pulse",
"pulse-opl",
"hir",
"nnef",
"tensorflow",
"onnx-opl",
"onnx",
"kaldi",
"cli",
"examples/tensorflow-mobilenet-v2",
"examples/jupyter-keras-tract-tf1",
"examples/jupyter-keras-tract-tf2",
"examples/nnef-dump-mobilenet-v2",
"examples/nnef-mobilenet-v2",
"examples/onnx-mobilenet-v2",
"examples/onnx-mobilenet-v2-batch",
"examples/pytorch-albert-v2",
"examples/pytorch-resnet",
"harness/core-proptest-pulse",
"harness/lstm-proptest-onnx-vs-tf",
"harness/nnef-inceptionv3",
"harness/onnx-test-suite",
"harness/tf-inceptionv3",
"harness/tf-mobilenet-v2",
"harness/tf-moz-deepspeech",
]
[profile.opt-no-lto]
inherits="release"
lto=false
[profile.release]
lto = true
[profile.bench]
debug = true
[profile.dev.package."*"]
opt-level = 2
[profile.dev.package.darling_macro]
opt-level = 0 # work around never ending build on wondows
[profile.dev.build-override]
debug = false
# strip = "debuginfo" does not work on android and ios
incremental = false