forked from AlibabaPAI/DAPPLE
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
45 lines (39 loc) · 820 Bytes
/
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
[package]
name = "HPGO"
version = "0.9.1"
license = "Apache-2.0"
authors = ["Yi Rong <[email protected]>"]
description = "Hybrid Parallelism Global Orchestration"
repository = "https://github.com/LER0ever/HPGO"
exclude = [
"amoeba_net/*",
"bert/*",
"gnmt/*",
"vgg19/*",
"xlnet",
]
[lib]
name = "HPGO"
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "HPGO-CMD"
path = "src/main.rs"
[dependencies]
structopt = "0.3"
itertools = "0.7.8"
rayon = "1.3"
ansi_term = "0.12"
prettytable-rs = "0.8"
ordered-float = "1.0"
[dependencies.pyo3]
version = "0.8.4"
[features]
extension-module = ["pyo3/extension-module"]
default = ["extension-module"]
[dev-dependencies]
criterion = "0.3"
quickcheck = "0.8"
quickcheck_macros = "0.8"
[package.metadata.maturin]
requires-dist = ["graphviz~=0.13"]