-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
51 lines (43 loc) · 1019 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
46
47
48
49
50
51
[package]
name = "comal"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dam = { git = "https://github.com/stanford-ppl/DAM-RS.git", branch = "dev", default-features=true, features = ["coroutines", "dot"]}
num = "0.4.1"
serde_derive = "1.0.181"
serde = "1.0.181"
toml = "0.7.6"
home = "0.5.5"
frunk = "0.4.2"
linkme = "0.3.14"
criterion = "0.5.1"
prost = "0.11.9"
prost-types = "0.11.9"
bytes = "1.4.0"
ndarray = "0.15.6"
itertools = "0.11.0"
num-traits = "0.2.16"
rand_distr = "0.4.3"
rand = "0.8.5"
clap = { version = "4.4.18", features = ["derive"] }
anyhow = "1.0.80"
strum = { version = "0.26", features = ["derive"] }
[build-dependencies]
prost-build = "0.11.9"
[profile.release-with-debug]
inherits = "release"
debug = true
[[bench]]
name = "mat_elemadd"
harness = false
[[bench]]
name = "bench_proto"
harness = false
[[bench]]
name = "matmul"
harness = false
[[bench]]
name = "bench_mha"
harness = false