pub struct SimpleTmaConvolutionFamily<SMM: StageMatmulFamily> { /* private fields */ }
Trait Implementations§
Source§impl<SMM> ConvolutionConfigFactory for SimpleTmaConvolutionFamily<SMM>where
SMM: StageMatmulFamily,
impl<SMM> ConvolutionConfigFactory for SimpleTmaConvolutionFamily<SMM>where
SMM: StageMatmulFamily,
Source§type Config = ConvolutionConfig<SimpleTmaConfig<<SMM as StageMatmulFamily>::Config>>
type Config = ConvolutionConfig<SimpleTmaConfig<<SMM as StageMatmulFamily>::Config>>
Configuration tailored to the matmul implementation
fn setup<R: Runtime, MP: MatmulPrecision>( client: &ComputeClient<R::Server, R::Channel>, problem: &ConvolutionProblem, selection: &MatmulSelection, line_sizes: &MatmulLineSizes, ) -> Result<Self::Config, MatmulSetupError>
Source§impl<SMM> ConvolutionFamily for SimpleTmaConvolutionFamily<SMM>
impl<SMM> ConvolutionFamily for SimpleTmaConvolutionFamily<SMM>
type Convolution<MP: MatmulPrecision> = SimpleTmaConvolution<MP, <SMM as StageMatmulFamily>::Matmul<MP, ContiguousTilingLayout<ColMajorTilingOrder>, ContiguousTilingLayout<RowMajorTilingOrder>>>
fn filter_line_sizes( available_line_sizes: AvailableLineSizes, ) -> AvailableLineSizes
Source§impl<SMM: StageMatmulFamily<LhsReader = FullReaderFamily, RhsReader = FullReaderFamily>> ConvolutionLaunch for SimpleTmaConvolutionFamily<SMM>
impl<SMM: StageMatmulFamily<LhsReader = FullReaderFamily, RhsReader = FullReaderFamily>> ConvolutionLaunch for SimpleTmaConvolutionFamily<SMM>
Source§unsafe fn launch_unchecked<'a, MS: MatmulSpec, R: Runtime>(
client: &ComputeClient<<R as Runtime>::Server, <R as Runtime>::Channel>,
cube_dim: CubeDim,
cube_count: CubeCount,
input: InputRuntimeArg<'a, MS, R>,
bias: Option<TensorArg<'a, R>>,
output: OutputRuntimeArg<'a, MS, R>,
problem: &ConvolutionProblem,
config: <Self as ConvolutionConfigFactory>::Config,
)
unsafe fn launch_unchecked<'a, MS: MatmulSpec, R: Runtime>( client: &ComputeClient<<R as Runtime>::Server, <R as Runtime>::Channel>, cube_dim: CubeDim, cube_count: CubeCount, input: InputRuntimeArg<'a, MS, R>, bias: Option<TensorArg<'a, R>>, output: OutputRuntimeArg<'a, MS, R>, problem: &ConvolutionProblem, config: <Self as ConvolutionConfigFactory>::Config, )
Entry point Read more
Auto Trait Implementations§
impl<SMM> Freeze for SimpleTmaConvolutionFamily<SMM>
impl<SMM> RefUnwindSafe for SimpleTmaConvolutionFamily<SMM>where
SMM: RefUnwindSafe,
impl<SMM> Send for SimpleTmaConvolutionFamily<SMM>
impl<SMM> Sync for SimpleTmaConvolutionFamily<SMM>
impl<SMM> Unpin for SimpleTmaConvolutionFamily<SMM>where
SMM: Unpin,
impl<SMM> UnwindSafe for SimpleTmaConvolutionFamily<SMM>where
SMM: 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