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

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

`dpnp.ndarray.data.ptr` always returns the base allocation pointer, not the view start pointer. Expected: `data.ptr` should reflect the view’s actual first-element address (base + offset * itemsize), matching NumPy/CuPy semantics. ```python...

This PR proposes to align all sections in `doc/reference` with `NumPy` and `CuPy` documentation style by using short function names Additionally, it adds `hints` with links to the corresponding NumPy...

The PR updates the file with the conda environment used to create build conda env for testing oneMath interfaces: - forced to use DPC++ and MKL from the latest release...

The PR adds the implementation of `dpnp.frexp` and extends the framework to support a unary function with two output arrays, including new wrappers in `ufunc` pybind11 extension and new python...

This one bite us dearly on PVCs, when porting an application written in cupy. Also found a similar issue https://github.com/IntelPython/dpnp/issues/1649 Looks like dpnp considers elements vs bytes (from numpy). Hoping...

The PR limits running histogram tests with large number of bin counts based on the available memory for the device. - [x] Have you provided a meaningful PR description? -...

It looks like I have hit an other corner case with indexing `dpnp.ndarray` with numpy indices. There has already been [recent](https://github.com/IntelPython/dpnp/issues/2461) support for this and was wondering if someone look...

Steps to reproduce: - Open a new colab notebook - Check the CPU architecture with `!lscpu` - Output of `lscpu`: ``` Architecture: x86_64 CPU op-mode(s): 32-bit, 64-bit Address sizes: 46...

This PR leverages the recently-added `dpctl.tensor.isin` to implement `dpnp.isin` - [X] Have you provided a meaningful PR description? - [ ] Have you added a test, reproducer or referred to...