dpnp
dpnp copied to clipboard
Data Parallel Extension for NumPy
``` $ python example example10.py example1.py example2.py example4.py example6.py example7.py example_bs.py jhammond@nuclear:~$ python example10.py Running on: Intel(R) Iris(R) Xe Graphics [0x9a49] DPCtrl SYCL queue used SYCL kernels link time: 3e-08...
``` $ python example2.py Running on: Intel(R) Iris(R) Xe Graphics [0x9a49] DPCtrl SYCL queue used SYCL kernels link time: 5.8e-08 (sec.) Math backend version: Intel(R) oneAPI Math Kernel Library Version...
I would like to collect here what is needed for fixing and updating public CI: - [x] #1041 - [ ] #1079 - [ ] #1084 - [ ] Update...
DPNP has build time dependency to MKL and should use the same version of MKL in runtime. DPNP conda packages should depend on correct MKL version. Otherwise users of DPNP...
Tried to work with NUMBA-DPPY on Windows. It is unusable because of missing DPNP
## Description Third-party cupy fft tests fails with assertion error even if dpnp doing fallback [CPU/GPU] ```bash FAILED tests/third_party/cupy/fft_tests/test_fft.py::TestFft2_param_7_{axes=(), norm=None, s=None, shape=(3, 4)}::test_fft2 - AssertionError: Parameterized test failed. FAILED tests/third_party/cupy/fft_tests/test_fft.py::TestFft2_param_7_{axes=(),...
oneDPL/PSTL (one of components in oneAPI) has incompatible changes in 2021.4 version. Look into https://github.com/IntelPython/dpnp/pull/982 for details.
## Description `usm_ndarray` interface is not compatible with some `third-party/cupy` test cases. `numpy.ndarray` for `flags` method returns `numpy.flagsobj`, while `usm_ndarray` returns `int` val for `flags` method. `third-party/cupy` test cases require...
The following program: ``` import dpctl import numpy as np import dpnp with dpctl.device_context("opencl:gpu:0"): a = dpnp.arange(1021, dtype=np.int64) ``` Produces the following error: ``` DPNP: Module NumPy found. Please load...
Hi, I want to use dpnp.convolve, but the source code: ` return call_origin(numpy.convolve, a=a, v=v, mode=mode) ` So, I wonder whether this function can be execued in GPU or not?...