Python wrappers
Public Python APIs implemented by this engine symbol.Strict 3-D batched matrix multiply: .
Composite — rank-checked alias of matmul_op. Rejects inputs of
rank and demands matching leading batch dimensions so the error
path is crisp. Gradient flows through MatmulBackward.
Math
For every batch index :
See Also
mm_op, matmul_op.
Parameters
aTensorImplPtrLeft operand of shape
(B, M, K).bTensorImplPtrRight operand of shape
(B, K, N). Leading batch B must match a.Returns
TensorImplPtrTensor of shape (B, M, N).
Raises
FailureIf either input is null, not exactly 3-D, or batch dimensions disagree.