//! High-performance multidimensional FFT with cache-oblivious tiling.
//!
//! Provides a from-scratch mixed-radix N-dimensional FFT engine:
//!
//! - [`mixed_radix`] — 1-D mixed-radix engine (radix-2/4/generic + Bluestein)
//! - [`ndim`] — N-D row-column decomposition with cache-oblivious tiling
//! - [`parallel_ndim`] — Thread-parallel N-D FFT via `std::thread::scope`
//! - [`types`] — Config structs and result types
// Convenient top-level re-exports
pub use ;
pub use ;
pub use ;