Method Einsum
Einsum(TensorFloat[], TensorFloat, TensorIndex[], TensorIndex, TensorIndex, TensorShape)
Performs an Einsum math operation.
Declaration
public override void Einsum(TensorFloat[] inputTensors, TensorFloat O, TensorIndex[] operandIndices, TensorIndex outputIndices, TensorIndex sumIndices, TensorShape sumShape)
Parameters
| Type | Name | Description |
|---|---|---|
| TensorFloat[] | inputTensors | The input tensors. |
| TensorFloat | O | The output tensor to be computed and filled. |
| TensorIndex[] | operandIndices | The operand indices for each input tensor. |
| TensorIndex | outputIndices | The output indices for each input tensor. |
| TensorIndex | sumIndices | The indices along which to sum. |
| TensorShape | sumShape | The shape along which to sum. |