-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
40 lines (30 loc) · 1.07 KB
/
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
[package]
name = "collenchyma-blas"
description = "Collenchyma library for full BLAS support"
version = "0.2.0"
authors = ["Michael Hirn <[email protected]>",
"Maximilian Goisser <[email protected]>"]
repository = "https://github.com/autumnai/collenchyma-blas"
homepage = "https://github.com/autumnai/collenchyma-blas"
documentation = "https://autumnai.github.io/collenchyma-blas"
readme = "README.md"
keywords = ["blas", "collenchyma", "computation", "hpc", "plugin"]
license = "MIT OR Apache-2.0"
[dependencies]
collenchyma = { version = "0.0.8", default-features = false }
lazy_static = "0.1"
# native
rblas = { version = "0.0.11", optional = true }
# cuda
cublas = { version = "0.2.0", optional = true }
clippy = { version = "0.0.27", optional = true }
[dev-dependencies]
rand = "0.3"
[features]
default = ["native", "cuda", "opencl"]
native = ["collenchyma/native", "rblas"]
cuda = ["collenchyma/cuda", "cublas"]
opencl = ["collenchyma/opencl"]
travis = ["native"]
dev = []
lint = ["clippy"]