dpnp.isinf
- dpnp.isinf(x, /, out=None, *, where=True, order='K', dtype=None, subok=True, **kwargs)[source]
Test element-wise for positive or negative infinity.
For full documentation refer to
numpy.isinf
.Limitations
Parameters x is only supported as either
dpnp.ndarray
ordpctl.tensor.usm_ndarray
. Parameters where, dtype and subok are supported with their default values. Otherwise the function will be executed sequentially on CPU. Input array data types are limited by supported DPNP Data types.See also
dpnp.isneginf
Test element-wise for negative infinity, return result as bool array.
dpnp.isposinf
Test element-wise for positive infinity, return result as bool array.
dpnp.isnan
Test element-wise for NaN and return result as a boolean array.
dpnp.isfinite
Test element-wise for finiteness.
Examples
>>> import dpnp as np >>> x = np.array([-np.inf, 0., np.inf]) >>> np.isinf(x) array([ True, False, True])