openvino.runtime.opset9.maximum#
- openvino.runtime.opset9.maximum(left_node: Node | int | float | ndarray, right_node: Node | int | float | ndarray, auto_broadcast: str = 'NUMPY', name: str | None = None) Node #
Return node which applies the maximum operation to input nodes elementwise.
- Parameters:
left_node – The first input node for maximum operation.
right_node – The second input node for maximum operation.
auto_broadcast – The type of broadcasting specifies rules used for auto-broadcasting of input tensors. Defaults to “NUMPY”.
name – The optional name for output new node.
- Returns:
The node performing element-wise maximum operation.