Skip to main content

dot_general_into

Function dot_general_into 

Source
pub fn dot_general_into<T: Scalar>(
    c: StridedViewMut<'_, T>,
    a: &StridedView<'_, T>,
    b: &StridedView<'_, T>,
    config: &DotGeneralConfig<'_>,
    alpha: T,
    beta: T,
) -> Result<()>
Expand description

Compute C = alpha * dot_general(A, B) + beta * C with the active backend.