pub fn dot_general_into<T>(
c: StridedViewMut<'_, T>,
a: &StridedView<'_, T>,
b: &StridedView<'_, T>,
config: &DotGeneralConfig<'_>,
alpha: T,
beta: T,
) -> Result<(), EinsumError>Expand description
Compute C = alpha * dot_general(A, B) + beta * C with the active backend.