Method Div
Div(TensorFloat, TensorFloat, TensorFloat)
Performs an element-wise Div math operation: f(a, b) = a / b.
This supports numpy-style broadcasting of input tensors.
Declaration
public override void Div(TensorFloat A, TensorFloat B, TensorFloat O)
Parameters
| Type | Name | Description |
|---|---|---|
| TensorFloat | A | The first input tensor. |
| TensorFloat | B | The second input tensor. |
| TensorFloat | O | The output tensor to be computed and filled. |
Overrides
Div(TensorInt, TensorInt, TensorInt)
Performs an element-wise Div math operation: f(a, b) = a / b.
This supports numpy-style broadcasting of input tensors.
Declaration
public override void Div(TensorInt A, TensorInt B, TensorInt O)
Parameters
| Type | Name | Description |
|---|---|---|
| TensorInt | A | The first input tensor. |
| TensorInt | B | The second input tensor. |
| TensorInt | O | The output tensor to be computed and filled. |