pub struct SimpleVecMatAlgorithm {}Trait Implementations§
Source§impl Algorithm for SimpleVecMatAlgorithm
impl Algorithm for SimpleVecMatAlgorithm
type SelectionArgs = ()
type TileMatmul = PlaneVecMatInnerProduct<Filled>
type StageMatmul = PlaneMatmulFamily<<SimpleVecMatAlgorithm as Algorithm>::TileMatmul, StridedStageFamily, StridedStageFamily, FilledStageFamily>
type GlobalMatmul = SimpleMatmulFamily<<SimpleVecMatAlgorithm as Algorithm>::StageMatmul, SyncFullCyclicLoading<RowMajorTilingOrder>, SyncFullCyclicLoading<ColMajorTilingOrder>, PlaneWriterFamily>
type BatchMatmul = PartitionedBatchMatmulFamily<<SimpleVecMatAlgorithm as Algorithm>::GlobalMatmul, RowMajorGlobalPartitionMatmul>
fn selection<R: Runtime>( client: &ComputeClient<R::Server>, problem: &MatmulProblem, plane_dim: u32, line_sizes: &MatmulLineSizes, _elems: MatmulElems, _args: &Self::SelectionArgs, ) -> Result<MatmulSelection, MatmulSetupError>
fn setup<MP: MatmulPrecision, R: Runtime>( client: &ComputeClient<R::Server>, problem: &MatmulProblem, selection: &MatmulSelection, line_sizes: &MatmulLineSizes, ) -> Result<<Self::BatchMatmul as BatchMatmulFamily>::Config, MatmulSetupError>
fn filter_line_sizes( available_line_sizes: AvailableLineSizes, ) -> AvailableLineSizes
fn select_plane_dim<R: Runtime>(client: &ComputeClient<R::Server>) -> u32
Auto Trait Implementations§
impl Freeze for SimpleVecMatAlgorithm
impl RefUnwindSafe for SimpleVecMatAlgorithm
impl Send for SimpleVecMatAlgorithm
impl Sync for SimpleVecMatAlgorithm
impl Unpin for SimpleVecMatAlgorithm
impl UnwindSafe for SimpleVecMatAlgorithm
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