dpnp icon indicating copy to clipboard operation
dpnp copied to clipboard

Data Parallel Extension for NumPy

Results 159 dpnp issues
Sort by recently updated
recently updated
newest added

This PR bumps `conda-build` version from 25.3.1 to 25.3.2. - [x] Have you provided a meaningful PR description? - [ ] Have you added a test, reproducer or referred to...

This PR suggests skipping `test_digitize_empty - empty array case` on LunarLake Windows as a temporary workaround to avoid crashes in the internal CI - [X] Have you provided a meaningful...

There were few fixes implemented in `array-api-tests` around clip tests. The PR proposes to enable `test_clip` test from `array-api-tests` scope. - [x] Have you provided a meaningful PR description? -...

Removes w/a related to https://github.com/IntelPython/dpctl/issues/2030. - [x] Have you provided a meaningful PR description? - [ ] Have you added a test, reproducer or referred to an issue with a...

This PR updates `СMakeLists` files and `build_locally.py` to enable building dpnp for AMD targets. To build dpnp on AMD: ``` python scripts/build_locally.py --target-hip=gfx90a ``` To find the architecture, use ```...

The PR proposes to backport changes from #2345 and #2348. - [x] Have you provided a meaningful PR description? - [ ] Have you added a test, reproducer or referred...

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

Hi, In a similar vein to https://github.com/IntelPython/dpnp/issues/2086, I also had a question about dpnp's performance with respect to for loops, going in and out of the array context. I tested...

Hi, I've been testing dpnp on CPU with some standard NaN functions (nan_to_num, nansum), and my performance results seem to show that dpnp is quite slow single-threaded compared to NumPy....

The following example does not work when base is defined. ```python >>> import dpnp >>> x=dpnp.array([2,3,4,5], device="gpu") >>> dpnp.logspace(1, x[2:4], 4, device="cpu") # array([[1.00000000e+01, 1.00000000e+01], # [1.00000000e+02, 2.15443469e+02], # [1.00000000e+03,...

bug