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,
    ) -> 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, ) -> 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.

Implementors§