oxifft 0.3.1

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

mod plan_2d;
mod plan_3d;
mod plan_3d_pencil;
mod plan_nd;

pub use plan_2d::MpiPlan2D;
pub use plan_3d::MpiPlan3D;
pub use plan_3d_pencil::{PencilGrid, PencilPlan3D};
pub use plan_nd::MpiPlanND;