yfft 0.1.0

Simple fast Fourier transform library optimized for small, power-of-two, single precision transforms and x86 systems
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Defines FFT kernels optimized by using SSE2 instruction set.
//!
//! Performances
//! ------------
//!
//! Yet to be measured.

use super::{Kernel, KernelCreationParams, Num};

pub fn new_x86_sse2_kernel<T>(_: &KernelCreationParams) -> Option<Box<Kernel<T>>>
where
    T: Num,
{
    None
}