pub struct ScanBackwardPlan<T: Element, const N: usize> { /* private fields */ }Expand description
Single-axis scan backward plan.
Implementations§
Source§impl<T: Element, const N: usize> ScanBackwardPlan<T, N>
impl<T: Element, const N: usize> ScanBackwardPlan<T, N>
Sourcepub fn select(
_stream: &Stream,
desc: &ScanBackwardDescriptor<N>,
_pref: PlanPreference,
) -> Result<Self>
pub fn select( _stream: &Stream, desc: &ScanBackwardDescriptor<N>, _pref: PlanPreference, ) -> Result<Self>
Pick a kernel.
Sourcepub fn can_implement(&self, args: &ScanBackwardArgs<'_, T, N>) -> Result<()>
pub fn can_implement(&self, args: &ScanBackwardArgs<'_, T, N>) -> Result<()>
Validate args.
Sourcepub fn workspace_size(&self) -> usize
pub fn workspace_size(&self) -> usize
Workspace size in bytes.
Sourcepub fn precision_guarantee(&self) -> PrecisionGuarantee
pub fn precision_guarantee(&self) -> PrecisionGuarantee
Numerical guarantees.
Auto Trait Implementations§
impl<T, const N: usize> Freeze for ScanBackwardPlan<T, N>
impl<T, const N: usize> RefUnwindSafe for ScanBackwardPlan<T, N>where
T: RefUnwindSafe,
impl<T, const N: usize> Send for ScanBackwardPlan<T, N>where
T: Send,
impl<T, const N: usize> Sync for ScanBackwardPlan<T, N>where
T: Sync,
impl<T, const N: usize> Unpin for ScanBackwardPlan<T, N>where
T: Unpin,
impl<T, const N: usize> UnsafeUnpin for ScanBackwardPlan<T, N>
impl<T, const N: usize> UnwindSafe for ScanBackwardPlan<T, N>where
T: UnwindSafe,
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