vlad-perevezentsev

Results 8 issues of vlad-perevezentsev

The below example works differently depending on the device: ``` import dpctl.tensor as dpt a = dpt.asarray([0], dtype='c16', device='gpu') dpt.pow(a,1) # usm_ndarray([0.+0.j]) a = dpt.asarray([0], dtype='c16', device='cpu') dpt.pow(a,1) # usm_ndarray([nan+nanj])...

This PR suggests getting rid of use `-p warnings` flag in pytest configuration and handling warnings separately. This will help to see new warnings during development - [X] Have you...

TBD - [ ] Have you provided a meaningful PR description? - [ ] Have you added a test, reproducer or referred to issue with a reproducer? - [ ]...

Current implementations of elementwise functions in dpctl.tensor do not support `out` data type other than `bool` and raise `ValueError` if `out` is not `bool`. ``` import dpctl.tensor as dpt a...

question

This PR suggests implementing new math function `dpnp.nan_to_num()` through dpnp functions like `dpnp.isposinf()`, `dpnp.isneginf()` `dpnp.isnan()` and `dpnp.where()`. Also added new tests covering cases not implemented in CuPy tests - [X]...

This PR suggests adding `gesv_batch` implementation as a separate function and provide iteration of the batch array within it to avoid allocation of each 2D array before calling `gesv` to...

- [ ] Have you provided a meaningful PR description? - [ ] Have you added a test, reproducer or referred to issue with a reproducer? - [ ] Have...