-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (34 loc) · 1.16 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
[package]
name = "sliced"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
#custos = { git = "https://github.com/elftausend/custos", branch = "autograd" }
#custos = {git = "https://github.com/elftausend/custos", branch = "autograd", default-features=false, features=["macro"]}
custos = {path = "../custos", default-features=false, features=["macro"]}
fastrand = "1.8.0"
[profile.release]
debug = true
[features]
default = ["cpu", "matrix", "opencl", "stack", "autograd", "blas"]
#default = ["blas", "stack", "cpu", "matrix", "opencl", "autograd"]
#default = ["stack", "cpu", "opencl", "blas", "matrix", "static-api"]
autograd = ["custos/autograd"]
static-api = ["custos/static-api"]
stack = ["custos/stack"]
cpu = ["custos/cpu"]
opencl = ["custos/opencl", "cpu"]
blas = ["custos/blas"]
matrix = []
#nnapi = ["custos/nnapi"]
[dev-dependencies]
rawsliced = { path = "../rawsliced" }
graplot = "0.1.22"
purpur = "0.1.0"
[[test]]
name = "test_combination"
required-features = ["cpu", "autograd", "opencl"]
#[[test]]
#name = "nn/linear"
#required-features = ["cpu", "autograd", "opencl"]