pub struct SimpleConv<LL: FullLoadingStrategy<RuntimeArgs>, LR: FullLoadingStrategy<RuntimeArgs>> { /* private fields */ }Expand description
Cmma convolution
Trait Implementations§
Source§impl<LL: FullLoadingStrategy<RuntimeArgs, TileKind = Strided>, LR: FullLoadingStrategy<RuntimeArgs, TileKind = Strided, SyncStrategy = LL::SyncStrategy>> Routine for SimpleConv<LL, LR>
impl<LL: FullLoadingStrategy<RuntimeArgs, TileKind = Strided>, LR: FullLoadingStrategy<RuntimeArgs, TileKind = Strided, SyncStrategy = LL::SyncStrategy>> Routine for SimpleConv<LL, LR>
type Blueprint = TilingBlueprint
type Strategy = SimpleArgs
type MatmulRoutine = SimpleAlgorithm<LL, LR, SyncBiasLoading>
type Args = TensorArgs<RuntimeArgs>
fn correct_layout<R: Runtime>( client: &ComputeClient<R>, handle: TensorBinding<R>, dtype: StorageType, _operation: ConvolutionOperation, ) -> Result<TensorBinding<R>, LaunchError>
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.
fn filter_vector_sizes( vector_sizes: AvailableVectorSizes, ) -> AvailableVectorSizes
Auto Trait Implementations§
impl<LL, LR> Freeze for SimpleConv<LL, LR>
impl<LL, LR> RefUnwindSafe for SimpleConv<LL, LR>where
LL: RefUnwindSafe,
LR: RefUnwindSafe,
impl<LL, LR> Send for SimpleConv<LL, LR>
impl<LL, LR> Sync for SimpleConv<LL, LR>
impl<LL, LR> Unpin for SimpleConv<LL, LR>
impl<LL, LR> UnsafeUnpin for SimpleConv<LL, LR>
impl<LL, LR> UnwindSafe for SimpleConv<LL, LR>where
LL: UnwindSafe,
LR: 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