Method MatMul
MatMul(TensorFloat, TensorFloat, TensorFloat)
Performs a multi-dimensional matrix multiplication operation: f(a, b) = a x b.
Declaration
public override void MatMul(TensorFloat X, TensorFloat Y, TensorFloat O)
Parameters
Type | Name | Description |
---|---|---|
TensorFloat | X | The first input tensor. |
TensorFloat | Y | The second input tensor. |
TensorFloat | O | The output tensor to be computed and filled. |