forked from autumnai/collenchyma
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
49 lines (40 loc) · 1.15 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
[package]
name = "collenchyma"
description = "high-performance computation on any hardware"
version = "0.0.8"
authors = ["Michael Hirn <mj@autumnai.com>",
"Maximilian Goisser <max@autumnai.com>"]
repository = "https://github.com/autumnai/collenchyma"
homepage = "https://github.com/autumnai/collenchyma"
documentation = "http://autumnai.github.io/collenchyma"
readme = "README.md"
keywords = ["backend", "computation", "opencl", "cuda", "hpc"]
license = "MIT OR Apache-2.0"
[dependencies]
libc = "0.2"
bitflags = "0.3"
enum_primitive = "0.1.0"
byteorder = "0.4"
num = "0.1"
lazy_static = "0.1.15"
clippy = { version = "0.0.27", optional = true }
compiletest_rs = { version = "0.1", optional = true }
[dev-dependencies]
rand = "0.3"
[features]
default = ["native", "cuda", "opencl"]
native = []
cuda = []
opencl = []
unstable_alloc = [] # faster but unstable memory allocation on native machines
dev = []
unstable = ["compiletest_rs"] # for travis-cargo
travis = ["native"]
lint = ["clippy"]
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = false
debug-assertions = false
codegen-units = 1