pub enum WarpReduceOp {
Sum,
Product,
Min,
Max,
And,
Or,
Xor,
}Expand description
Warp reduce operations.
Variants§
Sum
Sum reduction.
Product
Product reduction.
Min
Minimum reduction.
Max
Maximum reduction.
And
AND reduction.
Or
OR reduction.
Xor
XOR reduction.
Trait Implementations§
Source§impl Clone for WarpReduceOp
impl Clone for WarpReduceOp
Source§fn clone(&self) -> WarpReduceOp
fn clone(&self) -> WarpReduceOp
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WarpReduceOp
impl Debug for WarpReduceOp
Source§impl PartialEq for WarpReduceOp
impl PartialEq for WarpReduceOp
impl Copy for WarpReduceOp
impl Eq for WarpReduceOp
impl StructuralPartialEq for WarpReduceOp
Auto Trait Implementations§
impl Freeze for WarpReduceOp
impl RefUnwindSafe for WarpReduceOp
impl Send for WarpReduceOp
impl Sync for WarpReduceOp
impl Unpin for WarpReduceOp
impl UnwindSafe for WarpReduceOp
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