pub fn einsum_into<'a, T: EinsumScalar>(
notation: &str,
operands: Vec<MdOperand<'_>>,
output: &'a mut ViewMut<'a, T, DynRank>,
alpha: T,
beta: T,
) -> Result<()>Expand description
Parse and evaluate an einsum expression, writing the result into a pre-allocated mdarray output with alpha/beta scaling.
output = alpha * einsum(operands) + beta * output