-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (31 loc) · 901 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
[package]
name = "ruml"
edition = "2021"
version = "0.1.0"
license = "GPL-3.0"
readme = "README.md"
categories = ["library"]
description = "a smol tensor library"
repository = "https://github.com/notjedi/ruml"
authors = ["Krithic Kumar [email protected]"]
keywords = ["tensor", "tensor-library", "machine-learning"]
[dependencies]
rayon = "1.8"
daggy = "0.8"
petgraph = "0.6"
wide = { version = "0.7", default-features = false }
num-traits = { version = "0.2", default-features = false }
rand_distr = { version = "0.4", default-features = false }
aligned-vec = { version = "0.5", default-features = false }
rand = { version = "0.8", default-features = false, features = ["std_rng"] }
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
[features]
default = ["std"]
std = []
[[bench]]
name = "matmul"
harness = false
[[bench]]
name = "ops"
harness = false