Alexander Kalistratov

Results 17 issues of Alexander Kalistratov

Reproducer: ```python import dpnp as np import numba_dpex as ndpx from numba import literally @ndpx.kernel def lit(a, n): literally(n) local_a_0 = ndpx.private.array(n, dtype=a.dtype) lid = ndpx.get_local_id(0) if lid == 0:...

enhancement

```python import dpnp import numba_dpex as nb from numba_dpex import Range @nb.kernel def foo(a, b): i = nb.get_global_id(0) if i == b: a[0] = b a = dpnp.zeros(1) b =...

enhancement

Integrated graphics doesn't support `double` data type. `cov` supports only double input and output: https://github.com/IntelPython/dpnp/blob/cfc9b40f97d5cbc3114171728bf96e6f59b74005/dpnp/backend/kernels/dpnp_krnl_statistics.cpp#L1380 `max`, `min`, `mean`, `median`, `var` and `std` supports only double output for integer input: https://github.com/IntelPython/dpnp/blob/cfc9b40f97d5cbc3114171728bf96e6f59b74005/dpnp/backend/kernels/dpnp_krnl_statistics.cpp#L1400

This issue is to track sporadic failures in CI. This issue is going to be updated with each failure in order to try to track it's source. ``` Default async_handler...

See details: https://github.com/IntelPython/dpbench/pull/168

``` File "/home/akalistr/miniconda3/envs/dpbench-dev/bin/dpbench", line 33, in sys.exit(load_entry_point('dpbench', 'console_scripts', 'dpbench')()) File "/home/akalistr/repo/dpbench/dpbench/console/entry.py", line 134, in main execute_run(args, conn) File "/home/akalistr/repo/dpbench/dpbench/console/run.py", line 172, in execute_run runner.run_benchmark_and_save( File "/home/akalistr/repo/dpbench/dpbench/infrastructure/benchmark_runner.py", line 372, in run_benchmark_and_save...