dpctl.tensor.logical_not¶
- dpctl.tensor.logical_not¶
logical_not(x, /, *, out=None, order=’K’)
Computes the logical NOT for each element x_i of input array x.
- Parameters:
x (usm_ndarray) – Input array.
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 element-wise logical NOT results.
- Return type: