pub struct SimpleAsyncTmaConv<TMM: TileMatmulFamily> { /* private fields */ }Trait Implementations§
Source§impl<TMM: TileMatmulFamily<LhsTile = Strided, RhsTile = Strided, AccTile = Option<Strided>, OutTile = Strided>> Algorithm for SimpleAsyncTmaConv<TMM>
impl<TMM: TileMatmulFamily<LhsTile = Strided, RhsTile = Strided, AccTile = Option<Strided>, OutTile = Strided>> Algorithm for SimpleAsyncTmaConv<TMM>
type Routine = SimpleAlgorithm<TMM, AsyncFullTmaLoading, AsyncFullTmaLoading, SyncBiasLoading>
type Args = TensorMapArgs<RuntimeArgs>
fn correct_layout<R: Runtime>( client: &ComputeClient<R>, handle: TensorBinding<R>, dtype: StorageType, operation: ConvolutionOperation, ) -> Result<TensorBinding<R>, LaunchError>
fn filter_vector_sizes( vector_sizes: AvailableVectorSizes, ) -> AvailableVectorSizes
Source§const IS_SPECIALIZED: bool = false
const IS_SPECIALIZED: bool = false
Whether to select specialized load flow in tests. Should replace with something cleaner
eventually, but this is nice and simple.
Auto Trait Implementations§
impl<TMM> Freeze for SimpleAsyncTmaConv<TMM>
impl<TMM> RefUnwindSafe for SimpleAsyncTmaConv<TMM>where
TMM: RefUnwindSafe,
impl<TMM> Send for SimpleAsyncTmaConv<TMM>
impl<TMM> Sync for SimpleAsyncTmaConv<TMM>
impl<TMM> Unpin for SimpleAsyncTmaConv<TMM>where
TMM: Unpin,
impl<TMM> UnsafeUnpin for SimpleAsyncTmaConv<TMM>
impl<TMM> UnwindSafe for SimpleAsyncTmaConv<TMM>where
TMM: UnwindSafe,
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