-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 819 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 819 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
[package]
name = "ndarray-conv"
version = "0.6.0"
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.17", features = ["rayon"]}
num = "0.4"
rustfft = "6.4"
realfft = "3.5"
thiserror = "2.0"
castaway = "0.2"
[dev-dependencies]
tch = {version = "0.20.0", features = ["download-libtorch"]}
criterion = { version = "0.6", features = ["html_reports"] }
fft-convolver = "0.2"
# fftconvolve = "0.1"
convolutions-rs = "0.3"
ndarray-vision = "0.5"
ndarray-rand = ">=0.16"
[[bench]]
name = "with_torch"
harness = false