dpctl.tensor.positive

dpctl.tensor.positive

positive(x, /, *, out=None, order=’K’)

Computes the numerical positive for each element x_i of input array x.

Parameters:
  • x (usm_ndarray) – Input array, expected to have a numeric data type.

  • out (usm_ndarray) – Output array to populate. Array must have the correct shape and the expected data type.

  • order ("C","F","A","K", optional) – memory layout of the new output array, if parameter out is None. Default: “K”.

Returns:

An array containing the positive of x.

Return type:

usm_ndarray