pub trait FftDispatch: Send + 'static {
// Required methods
fn dtype_kind(&self) -> DType;
fn plan_key(&self) -> PlanKey;
fn dispatch(self: Box<Self>, ctx: &FftDispatchCtx<'_>);
}Expand description
Dispatch trait for typed cuFFT requests (FftRequest<T> for
T: FftSupported).