-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (37 loc) · 858 Bytes
/
Cargo.toml
File metadata and controls
43 lines (37 loc) · 858 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
[package]
name = "stride-perf"
version = "0.1.0"
edition = "2021"
[dependencies]
sideway = { git = "https://github.com/RDMA-Rust/sideway.git", branch = "main" }
pci-info = "0.2"
serde = { version = "1.0", features = ["derive"] }
strum = { version = "0.27", features = ["derive"] }
paste = "1"
clap = { version = "4.5", features = ["derive"] }
thiserror = "2"
anyhow = "1"
memmap2 = "0.9"
quanta = "0.12"
byte-unit = "5.1"
rand = "0.8"
bincode = "1"
hdrhistogram = "7"
tracing = "0.1"
tracing-subscriber = "0.3"
cudarc = { version = "0.11", optional = true, features = ["driver"] }
[features]
default = []
cuda = ["cudarc"]
[lib]
name = "stride"
path = "src/lib.rs"
[[bin]]
name = "stride-perf"
path = "src/bin/stride-perf.rs"
[[bin]]
name = "stride-bench"
path = "src/bin/stride-bench.rs"
[[bin]]
name = "stride-probe"
path = "src/bin/stride-probe.rs"