forked from TYPEmber/ndarray-conv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 818 Bytes
/
Cargo.toml
File metadata and controls
32 lines (27 loc) · 818 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
[package]
name = "ndarray-conv"
version = "0.3.3"
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["convolution", "ndarray", "FFT"]
description = "N-Dimension convolution (with FFT) lib for ndarray."
repository = "https://github.com/TYPEmber/ndarray-conv.git"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ndarray = {version = "0.15", features = ["rayon"]}
num = "0.4"
rustfft = "6.2"
realfft = "3.3"
thiserror = "1.0"
# [dev-dependencies]
ndarray-rand = "0.14"
[dev-dependencies]
tch = {version = "0.13.0", features = ["download-libtorch"]}
criterion = { version = "0.4", features = ["html_reports"] }
fft-convolver = "0.2"
fftconvolve = "0.1"
convolutions-rs = "0.3"
ndarray-vision = "0.5"
[[bench]]
name = "with_torch"
harness = false