pub struct LoopTile {
pub original_var: String,
pub tile_var: String,
pub intra_var: String,
pub tile_size: u64,
}Expand description
Describes how a single loop variable should be tiled.
Fields§
§original_var: StringThe original (un-tiled) loop variable name.
tile_var: StringThe outer (tile-index) variable name generated by tiling.
intra_var: StringThe inner (intra-tile) variable name generated by tiling.
tile_size: u64The tile size in elements.
Implementations§
Trait Implementations§
impl StructuralPartialEq for LoopTile
Auto Trait Implementations§
impl Freeze for LoopTile
impl RefUnwindSafe for LoopTile
impl Send for LoopTile
impl Sync for LoopTile
impl Unpin for LoopTile
impl UnsafeUnpin for LoopTile
impl UnwindSafe for LoopTile
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