forked from TinyChain-Inc/ha-ndarray
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 1006 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (32 loc) · 1006 Bytes
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
[package]
name = "ha-ndarray"
version = "0.4.0"
edition = "2021"
authors = ["code@tinychain.net"]
description = "A hardware-accelerated n-dimensional array"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/haydnv/ha-ndarray.git"
keywords = ["ndarray", "tensor", "gpu", "ml", "parallel"]
categories = ["data-structures", "hardware-support", "mathematics"]
[features]
all = ["freqfs", "opencl", "stream"]
freqfs = ["freqfs/stream", "stream"]
opencl = ["memoize", "ocl"]
stream = ["async-trait", "destream", "futures"]
[build-dependencies]
pkg-config = "0.3"
[dependencies]
async-trait = { version = "0.1", optional = true }
destream = { version = "0.8", optional = true }
futures = { version = "0.3", optional = true }
freqfs = { version = "0.10", optional = true }
get-size = "0.1"
lazy_static = "1.5"
memoize = { version = "0.4", optional = true }
num_cpus = "1.16"
ocl = { version = "0.19", optional = true }
rand = "0.8"
rayon = "1.10"
smallvec = "1.13"
transpose = "0.2"