Alexander Kalistratov

Results 17 issues of Alexander Kalistratov

Please review these guidelines to help with the review process: - [ ] Have you provided a meaningful PR description? - [ ] Have you added a test, a reproducer,...

``` from dpctl import tensor as np from numba_mlir import njit import numba from numba import prange size = 10*1000 @njit(parallel=True) def foo(a): acc = 0 for i in prange(size):...

Please review these guidelines to help with the review process: - [ ] Have you provided a meaningful PR description? - [ ] Have you added a test, a reproducer,...

Please review these guidelines to help with the review process: - [ ] Have you provided a meaningful PR description? - [ ] Have you added a test, a reproducer,...

```python import numba_mlir @numba_mlir.njit def func(): return {'a': 1, 'b': 2} func() ``` Output: ``` ... RuntimeError: lower_expr not handled: "build_map" ```

enhancement

```python import numba_mlir @numba_mlir.njit def func(): return [1, 2, 3] func() ``` output: ``` ... RuntimeError: lower_expr not handled: "build_list" ```

enhancement

Implemention of histogram with sycl_kernel. This PR adds generic histogram kernel which can be used in the future to implement other versions of histogram such as `bincount`, `histogram2d` and `histogramdd`...