dpnp
dpnp copied to clipboard
Data Parallel Extension for NumPy
Building the software from source shows a lot of error message. It is python3.9 from oneapi/intelpython. Thanks.
``` Set path to Performance Libraries in case of using venv or system Python: export LD_LIBRARY_PATH=/lib ``` Could you please clarify the meaning of Performance Libraries ? Which environment is...
Which package needs to be installed for the header file ? Thanks.
Here is an example: ``` import dpnp arr = dpnp.array([[0.1, 0.2],[0.3, 0.4]]).astype(dpnp.float64) a = arr[0,0] b = a * a print(type(a)) print(type(b)) c = dpnp.sqrt(b) ``` Output is: ``` ---------------------------------------------------------------------------...
I was exploring interoperability of the IntelPython packages and wanted to try to build the stack dpctl / dpnp / numba_dpex with custom sycl libraries. dpctl seems to be built...
Installed via Wheel PyPi. Fails first test due to import error.
Steps to reproduce: ``` $ conda create -y -n dpnp -c intel dpnp $ conda activate dpnp $ python -c "import dpnp" Running on: No device of requested type available....
IntelPython/dpctl#797 changed equivalency relation between queues. Previously two queues were equivalent if they had the same device, same context, and same properties. This made two copies of the same instance...
dpnp/benchmarks/benchmarks/common.py generates the following runtime error: ``` DeprecationWarning: `np.typeDict` is a deprecated alias for `np.sctypeDict`. ```
If DPNP needs to be imported before Numpy, you should do that in your benchmarks. ``` jhammond@nuclear:~/dpnp/benchmarks/benchmarks$ python bench_elementwise.py /opt/intel/oneapi/intelpython/latest/lib/python3.9/site-packages/dpnp/__init__.py:41: UserWarning: DPNP: Module NumPy found. Please load DPNP module before...