forked from autumnai/leaf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
56 lines (45 loc) · 1.44 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "leaf"
description = "Machine Learning Framework for Hackers"
version = "0.2.1"
authors = [
"Maximilian Goisser <[email protected]>",
"Michael Hirn <[email protected]>"
]
repository = "https://github.com/autumnai/leaf"
homepage = "https://github.com/autumnai/leaf"
documentation = "http://autumnai.github.io/leaf"
readme = "README.md"
keywords = ["deep-learning", "neural-networks", "machine-learning", "framework"]
license = "MIT OR Apache-2.0"
build = "build.rs"
[dependencies]
collenchyma = { git = "https://github.com/alexandermorozov/collenchyma", default-features = false }
collenchyma-blas = { git = "https://github.com/alexandermorozov/collenchyma-blas", default-features = false }
collenchyma-nn = { git = "https://github.com/alexandermorozov/collenchyma-nn", default-features = false }
log = "0.3.2"
rand = "0.3.0"
num = "0.1"
capnp = "0.6.2"
timeit = "0.1.2"
clippy = { version = "0.0.41", optional = true }
[build-dependencies]
capnpc = "0.6.1"
[dev-dependencies]
env_logger = "0.3"
[features]
default = ["native"]
native = ["collenchyma-blas/native", "collenchyma-nn/native"]
cuda = ["collenchyma/cuda", "collenchyma-blas/cuda", "collenchyma-nn/cuda"]
opencl = ["collenchyma/opencl", "collenchyma-blas/opencl", "collenchyma-nn/opencl"]
travis = ["native"]
dev = []
unstable = [] # for travis-cargo
lint = ["clippy"]
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = false
debug-assertions = false
codegen-units = 1