pub struct TransposedDispatch;
Expand description
Operates on data further along the m dimension as cube_pos_x
increases,
and further along the n dimension as cube_pos_y
increases.
Trait Implementations§
Source§impl Clone for TransposedDispatch
impl Clone for TransposedDispatch
Source§fn clone(&self) -> TransposedDispatch
fn clone(&self) -> TransposedDispatch
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 CubeDispatch for TransposedDispatch
impl CubeDispatch for TransposedDispatch
fn x_y_indices() -> (u32, u32)
fn batch_index() -> u32
fn max_x(cube_count: (u32, u32, u32)) -> u32
fn max_y(cube_count: (u32, u32, u32)) -> u32
fn max_batches(cube_count: (u32, u32, u32)) -> u32
fn __expand_x_y_indices( context: &mut Scope, ) -> <(u32, u32) as CubeType>::ExpandType
fn __expand_batch_index(context: &mut Scope) -> <u32 as CubeType>::ExpandType
fn __expand_max_x(context: &mut Scope, cube_count: (u32, u32, u32)) -> u32
fn __expand_max_y(context: &mut Scope, cube_count: (u32, u32, u32)) -> u32
fn __expand_max_batches(context: &mut Scope, cube_count: (u32, u32, u32)) -> u32
Source§impl Debug for TransposedDispatch
impl Debug for TransposedDispatch
Source§impl Hash for TransposedDispatch
impl Hash for TransposedDispatch
Source§impl PartialEq for TransposedDispatch
impl PartialEq for TransposedDispatch
impl Copy for TransposedDispatch
impl Eq for TransposedDispatch
impl StructuralPartialEq for TransposedDispatch
Auto Trait Implementations§
impl Freeze for TransposedDispatch
impl RefUnwindSafe for TransposedDispatch
impl Send for TransposedDispatch
impl Sync for TransposedDispatch
impl Unpin for TransposedDispatch
impl UnwindSafe for TransposedDispatch
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