Anton
Anton
`dpnp.angle` is added by #1650
`dpnp.real` and `dpnp.imag` are added by #1557
`dpnp.conj` and `dpnp.conjugate` are added by #1519
`dpnp.clip` is added by #1645
There are still warnings on PVC: ```bash =========================================================================================== warnings summary =========================================================================================== tests/test_sycl_queue.py::test_from_dlpack_with_dpt[complex64-level_zero:gpu:0] tests/test_sycl_queue.py::test_from_dlpack_with_dpt[complex64-level_zero:gpu:1] /home/gta/miniconda3/envs/dpnp_dev/lib/python3.10/site-packages/numpy/testing/_private/utils.py:722: RuntimeWarning: invalid value encountered in equal func=lambda xy: xy == +inf, tests/test_sycl_queue.py::test_from_dlpack_with_dpt[complex64-level_zero:gpu:0] tests/test_sycl_queue.py::test_from_dlpack_with_dpt[complex64-level_zero:gpu:1] /home/gta/miniconda3/envs/dpnp_dev/lib/python3.10/site-packages/numpy/testing/_private/utils.py:725: RuntimeWarning: invalid...
It seems the issue is also present when inputs are of the same kind: ```python dpctl.__version__ # Out: '0.19.0dev0+428.g94b8f841fd' x = dpt.asarray(0, dtype=numpy.uint8) dpt.clip(x, min=1, max=dpt.asarray([], dtype=numpy.uint16)) --------------------------------------------------------------------------- ValueError Traceback...
@jeshi96 , could you please specify what dpnp version you used? The output of `python -c "import dpnp; print(dpnp.__version__)"` should be enough.
Closing as it has been implemented in scope of `0.18.0` release
@oleksandr-pavlyk, the issue has been already resolved in `dpnp`: ```python import dpnp, dpctl, dpctl.tensor as dpt dpnp.__version__ # Out: '0.17.0dev3+25.g4f81237c708' a = dpnp.ones(10) a.flags # Out: # C_CONTIGUOUS : True...
The issue is still present and caused by [dpctl-1742](https://github.com/IntelPython/dpctl/issues/1742): ```python File "/home/runner/miniconda3/envs/array-api-conformity/lib/python3.12/site-packages/dpctl/tensor/_clip.py", line 463, in clip raise ValueError( ValueError: function '' does not support input types (uint8, uint8, uint16), and...