Python wrappers
Public Python APIs implemented by this engine symbol.Compute with full NumPy-style batch broadcasting and autograd.
Thin public wrapper that delegates to MatmulBackward::forward.
Math
See Also
dot_op : Rank-1 / rank-2 specialised dispatch. MatmulBackward : Autograd node implementing the backward pass.
Parameters
aTensorImplPtrLeft operand, rank .
bTensorImplPtrRight operand, rank .
Returns
TensorImplPtrResult tensor with broadcast batch shape and trailing .
Notes
FLOPs per output element ≈ ; total where is the broadcast batch size.
Examples
// C++: 2-D × 2-D plain GEMM.
auto C = matmul_op(A, B); // A: [M,K], B: [K,N] → C: [M,N]