pub struct RotateUp<const DELTA: u32>;Expand description
Rotate up: lane i receives from lane (i - delta) mod WARP_SIZE.
Dual of RotateDown. Data flows from lower-numbered lanes to higher.
Trait Implementations§
Source§impl<const DELTA: u32> Permutation for RotateUp<DELTA>
impl<const DELTA: u32> Permutation for RotateUp<DELTA>
impl<const DELTA: u32> Copy for RotateUp<DELTA>
Auto Trait Implementations§
impl<const DELTA: u32> Freeze for RotateUp<DELTA>
impl<const DELTA: u32> RefUnwindSafe for RotateUp<DELTA>
impl<const DELTA: u32> Send for RotateUp<DELTA>
impl<const DELTA: u32> Sync for RotateUp<DELTA>
impl<const DELTA: u32> Unpin for RotateUp<DELTA>
impl<const DELTA: u32> UnsafeUnpin for RotateUp<DELTA>
impl<const DELTA: u32> UnwindSafe for RotateUp<DELTA>
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