-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (43 loc) · 972 Bytes
/
Cargo.toml
File metadata and controls
51 lines (43 loc) · 972 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
44
45
46
47
48
49
50
51
[package]
name = "nccl-profiler"
version = "0.2.0"
edition = "2021"
[profile.release]
debug = 1
opt-level = 3
lto = true
[lib]
name = "nccl_profiler"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "integration_benchmark"
path = "src/integration_benchmark.rs"
[[bench]]
name = "clock"
harness = false
[features]
default = []
explicit-optin = []
[build-dependencies]
bindgen = "0.66.0"
cmake = "0.1"
tonic-build = "0.12.3"
[dev-dependencies]
criterion = { version = "0.4", features = ["html_reports"] }
[dependencies]
clap = { version = "4.5.37", features = ["derive"] }
crossbeam = "0.8.4"
env_logger = "0.11.5"
histogram = "0.11.2"
libc = "0.2.169"
libloading = "0.8.6"
log = "0.4.20"
nom = "8.0.0"
prost = "0.13.3"
prost-types = "0.13.3"
rand = "0.9.0"
serde_json = "1.0"
static_assertions = "1.1.0"
tempfile = "3.19.0"
tokio = { version = "1.43.0", features = ["full"] }
tonic = { version = "0.12.3", features = ["tls", "tls-native-roots", "tls-webpki-roots"] }