ngraph.opset1.ops.power

ngraph.opset1.ops.power(left_node: Union[_pyngraph.Node, int, float, numpy.ndarray], right_node: Union[_pyngraph.Node, int, float, numpy.ndarray], auto_broadcast: str = 'NUMPY', name: Optional[str] = None)_pyngraph.Node

Return node which perform element-wise exponentiation operation.

Parameters
  • left_node – The node providing the base of operation.

  • right_node – The node providing the exponent of operation.

  • name – The optional name for the new output node.

  • auto_broadcast – The type of broadcasting specifies rules used for auto-broadcasting of input tensors.

Returns

The new node performing element-wise exponentiation operation on input nodes.