Method Max
Max(TensorFloat[], TensorFloat)
Performs an element-wise Max math operation: f(x1, x2 ... xn) = max(x1, x2 ... xn).
This supports numpy-style broadcasting of input tensors.
Declaration
public virtual void Max(TensorFloat[] tensors, TensorFloat O)
Parameters
| Type | Name | Description |
|---|---|---|
| TensorFloat[] | tensors | |
| TensorFloat | O | The output tensor to be computed and filled. |
Implements
Max(TensorInt[], TensorInt)
Performs an element-wise Max math operation: f(x1, x2 ... xn) = max(x1, x2 ... xn).
This supports numpy-style broadcasting of input tensors.
Declaration
public virtual void Max(TensorInt[] tensors, TensorInt O)
Parameters
| Type | Name | Description |
|---|---|---|
| TensorInt[] | tensors | |
| TensorInt | O | The output tensor to be computed and filled. |