pub struct FftStage {}Expand description
Forward FFT stage: real time-domain samples to complex frequency-domain.
The output block stores interleaved [re, im, re, im, ...] pairs.
The block size must be a power of 2.
When the gpu feature is enabled, set gpu to true to dispatch FFT
through grafos-tensor’s GPU path. Falls back to CPU if the tensor
cannot be placed on GPU.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FftStage
impl RefUnwindSafe for FftStage
impl Send for FftStage
impl Sync for FftStage
impl Unpin for FftStage
impl UnwindSafe for FftStage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more