solvr 0.2.0-beta.2

Advanced computing library for real-world problem solving - optimization, differential equations, interpolation, statistics, and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! CUDA implementation of signal processing algorithms.
//!
//! This module implements the signal processing algorithm traits for CUDA
//! by delegating to the generic implementations in `impl_generic/`.
//!
//! Note: Some algorithms (extrema, medfilt, wiener) are CPU-only and return
//! errors when called on CUDA tensors.

mod convolution;
mod edge;
mod extrema;
mod medfilt;
mod nd_filters;
mod spectrogram;
mod stft;
mod wiener;