oxifft 0.2.0

Pure Rust implementation of FFTW - the Fastest Fourier Transform in the West
Documentation
1
2
3
4
5
6
7
8
9
//! Distributed FFT plans.

mod plan_2d;
mod plan_3d;
mod plan_nd;

pub use plan_2d::MpiPlan2D;
pub use plan_3d::MpiPlan3D;
pub use plan_nd::MpiPlanND;