pub enum FftKind {
Forward1dR2C {
n: usize,
batch: usize,
},
Inverse1dC2R {
n: usize,
batch: usize,
},
Forward2dC2C {
ny: usize,
nx: usize,
batch: usize,
},
}Expand description
Generic dense FFT payload. Maps to cuFFT, rocFFT, MPS Graph FFT, or VkFFT depending on the backend.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FftKind
impl RefUnwindSafe for FftKind
impl Send for FftKind
impl Sync for FftKind
impl Unpin for FftKind
impl UnsafeUnpin for FftKind
impl UnwindSafe for FftKind
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