pub fn launch_kernel_concrete<MS: MatmulSpec, R: Runtime, A: Algorithm>(
client: &ComputeClient<R::Server>,
input: &MatmulInputHandleRef<'_, R>,
weight: &MatmulInputHandleRef<'_, R>,
bias: &Option<TensorHandleRef<'_, R>>,
out: &TensorHandleRef<'_, R>,
problem: ConvolutionProblem,
line_sizes: MatmulLineSizes,
selection: MatmulSelection,
) -> Result<(), ConvSetupError>Expand description
Select which kernel to launch for the given Algorithm.
Only works for concrete tensor inputs and output.