Sergey Pokhodenko

Results 22 comments of Sergey Pokhodenko

Faced it several times on oneAPI 2021.3.

Could be related: - https://github.com/IntelPython/numba-dppy/pull/141

- half (symbol `"e"`) is supported in module `struct` starting from Python 3.6 (https://docs.python.org/3/library/struct.html#format-characters) - half is not supported in ctypes. (https://docs.python.org/3/library/ctypes.html?highlight=ctypes#fundamental-data-types) Error: ```python class c_half(ctypes._SimpleCData): _type_ = "e" ```...

Python 3.7 Ubuntu 20.04 conda list: ``` (dpctl-dev) spokhode@ansatnuc06:/localdisk/work/spokhode/dpctl$ conda list # packages in environment at /localdisk/work/spokhode/miniconda3/envs/dpctl-dev: # # Name Version Build Channel bzip2 1.0.8 h88c068d_5 http://10.241.130.213:8081 certifi 2020.11.8 py37_0...

> is this related to dpctl not providing a requirements.txt? No.

Tests should run tests in 2 kind of environments: 1. Run tests with **all installed devices available**. It helps test code on as much different devices as possible. 2. Run...

I see the same behavior on dpnp 0.7.1

> dparray is still used as default container In dpnp version 0.7.1, but work with dpctl.tensor.usm_ndarray is available with DPNP_OUTPUT_DPCTL=1 environment variable Thanks for the explanation.