//! Generic implementations of signal analysis algorithms.
//!
//! GPU-accelerable algorithms (hilbert, resample) live here.
//! CPU-only algorithms (decimate, find_peaks, savgol, extrema, medfilt, wiener)
//! live in cpu/ and use helpers from this module.
pub use ;
pub use hilbert_impl;
pub use resample_impl;