Trait ConvInputsLaunch

Source
pub trait ConvInputsLaunch: LaunchArg {
    // Required method
    fn create<'a, R: Runtime>(
        lhs: &'a TensorHandleRef<'a, R>,
        rhs: &'a TensorHandleRef<'a, R>,
        selection: &MatmulSelection,
        problem: &ConvolutionProblem,
        line_sizes: &MatmulLineSizes,
    ) -> Self::RuntimeArg<'a, R>;
}

Required Methods§

Source

fn create<'a, R: Runtime>( lhs: &'a TensorHandleRef<'a, R>, rhs: &'a TensorHandleRef<'a, R>, selection: &MatmulSelection, problem: &ConvolutionProblem, line_sizes: &MatmulLineSizes, ) -> Self::RuntimeArg<'a, R>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<EI: Numeric> ConvInputsLaunch for TensorInputs<EI>

Source§

fn create<'a, R: Runtime>( lhs: &'a TensorHandleRef<'a, R>, rhs: &'a TensorHandleRef<'a, R>, _selection: &MatmulSelection, _problem: &ConvolutionProblem, line_sizes: &MatmulLineSizes, ) -> Self::RuntimeArg<'a, R>

Source§

impl<EI: Numeric> ConvInputsLaunch for TensorMapInputs<EI>

Source§

fn create<'a, R: Runtime>( lhs: &'a TensorHandleRef<'a, R>, rhs: &'a TensorHandleRef<'a, R>, selection: &MatmulSelection, problem: &ConvolutionProblem, line_sizes: &MatmulLineSizes, ) -> Self::RuntimeArg<'a, R>

Implementors§