[package]
name = "ndarray-conv"
version = "0.6.1"
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"
[features]
rayon = ["dep:rayon"]
[dependencies]
ndarray = {version = ">=0.17", features = ["rayon"]}
num = "0.4"
rustfft = "6.4"
realfft = "3.5"
thiserror = "2.0"
castaway = "0.2"
rayon = {version = "1.11", optional = true}
[dev-dependencies]
tch = {version = "0.20.0", features = ["download-libtorch"]}
criterion = { version = "0.6", features = ["html_reports"] }
fft-convolver = "0.2"
convolutions-rs = "0.3"
ndarray-vision = "0.5"
ndarray-rand = ">=0.16"
[[bench]]
name = "with_torch"
harness = false
[[bench]]
name = "parallel"
harness = false
required-features = ["rayon"]