Match cuTENSOR's GEMM-style scaling interface: ```python einsum(subscripts, A, B, alpha=1.0, beta=0.0, out=None) ``` Result = alpha * contract(A, B) + beta * out. Useful for accumulation patterns and gradient updates.
Match cuTENSOR's GEMM-style scaling interface:
Result = alpha * contract(A, B) + beta * out.
Useful for accumulation patterns and gradient updates.