dpctl.tensor.where

dpctl.tensor.where(condition, x1, x2, /, *, order='K', out=None)[source]

Returns dpctl.tensor.usm_ndarray with elements chosen from x1 or x2 depending on condition.

Parameters:
  • condition (usm_ndarray) – When True yields from x1, and otherwise yields from x2. Must be compatible with x1 and x2 according to broadcasting rules.

  • x1 (usm_ndarray) – Array from which values are chosen when condition is True. Must be compatible with condition and x2 according to broadcasting rules.

  • x2 (usm_ndarray) – Array from which values are chosen when condition is not True. Must be compatible with condition and x2 according to broadcasting rules.

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

  • out (Optional[usm_ndarray]) – the array into which the result is written. The data type of out must match the expected shape and the expected data type of the result. If None then a new array is returned. Default: None.

Returns:

An array with elements from x1 where condition is True, and elements from x2 elsewhere.

Return type:

usm_ndarray

The data type of the returned array is determined by applying the Type Promotion Rules to x1 and x2.