-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
37 lines (29 loc) · 1.03 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
[package]
name = "collenchyma-nn"
description = "collenchyma plugin providing Neural Network operations"
version = "0.3.4"
authors = ["Michael Hirn <mj@autumnai.com>",
"Maximilian Goisser <max@autumnai.com>"]
repository = "https://github.com/autumnai/collenchyma-nn"
homepage = "https://github.com/autumnai/collenchyma-nn"
documentation = "https://autumnai.github.io/collenchyma-nn"
readme = "README.md"
keywords = ["neural-network", "collenchyma", "computation", "hpc", "plugin"]
license = "MIT OR Apache-2.0"
[dependencies]
collenchyma = { version = "0.0.8", default-features = false }
cudnn = { version = "1.3.1", optional = true }
libc = "0.2"
lazy_static = "0.1"
log = "0.3.2"
clippy = { version = "0.0.27", optional = true }
[dev-dependencies]
rand = "0.3"
[features]
default = ["native", "cuda", "opencl"]
native = ["collenchyma/native"]
cuda = ["collenchyma/cuda", "cudnn"]
opencl = ["collenchyma/opencl"]
travis = ["native"]
dev = []
lint = ["clippy"]