Angelina Kharchevnikova
Angelina Kharchevnikova
Provide the ability to read the piece of dataset. It's useful while reading by chunks. ``` @numba.njit(parallel=True) def foo(): df = pd.read_csv("test_df.csv", nrows=10) print(df) ```
For some reason "level0" fails with "SyclProgramCompilationError" when debug is activated (`export NUMBA_DPPY_DEBUG=1`). PR with tests: https://github.com/IntelPython/numba-dppy/pull/297
Numba keyword argument `fastmath` is not supported in `@dppy.kernel`. It can cause performance degradation in some cases. ```python import dpctl import numba_dppy import numpy as np import numpy.random as rnd...
Evaluate the [RNG feature](https://numba.pydata.org/numba-doc/latest/cuda/random.html) supported by `numba.cuda` and develop a plan on how to include support for similar functionality for `numba_dpex.kernel`. | Feature | numba.cuda| numba_dpex | | --- |...
### **High-level objective** - [x] Add initial support of DWARF data #26 ### Fix bugs - [x] GDB fails on "-O0" generated IR Initialize issues with code-generation #39, #285 (Possibly...
Update `docs/user_guides/debugging/backtrace.rst` with comments about backtrace log. Showing the call stack is good, but we should add some commentary around what we are seeing. Do not expect every reader to...