pub struct PipelinedTile<N: Numeric, Sc: TileScope> {
pub fragments: Sequence<Tile<N, Sc>>,
}Expand description
Rhs register fragments for the partition matmul. fragments has comptime
length 1 (single-buffered) or 2 (double-buffered with rotation).
Fields§
§fragments: Sequence<Tile<N, Sc>>Trait Implementations§
Source§impl<N: Numeric, Sc: TileScope> CubeType for PipelinedTile<N, Sc>
impl<N: Numeric, Sc: TileScope> CubeType for PipelinedTile<N, Sc>
type ExpandType = PipelinedTileExpand<N, Sc>
Auto Trait Implementations§
impl<N, Sc> !Send for PipelinedTile<N, Sc>
impl<N, Sc> !Sync for PipelinedTile<N, Sc>
impl<N, Sc> Freeze for PipelinedTile<N, Sc>
impl<N, Sc> RefUnwindSafe for PipelinedTile<N, Sc>where
Sc: RefUnwindSafe,
N: RefUnwindSafe,
impl<N, Sc> Unpin for PipelinedTile<N, Sc>
impl<N, Sc> UnsafeUnpin for PipelinedTile<N, Sc>
impl<N, Sc> UnwindSafe for PipelinedTile<N, Sc>
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more