Sergey Pokhodenko
Sergey Pokhodenko
SDC testing CI does not work in CentOS 7 docker container It was hard to indicate the problem via debugger just tried Ubuntu image. It is because there are new...
_Originally posted by @shssf in https://github.com/IntelPython/hpat/pull/253#pullrequestreview-307293162
> Are you sure that `skipna=None` here? It is better to refer to Pandas sources. We had am examples before where we found a bug in Pandas documentation _Originally posted...
According to [Numba docs](http://numba.pydata.org/numba-doc/latest/extending/high-level.html#implementing-functions) `@overload...` functions should return nothing (None) if it can not return function for given input types. All our current implementations of attributes, methods and functions in...
Actually `axis` could be a string (`'index'` or `'columns'`), not only an integer. You could add string type here. Moreover you could check on typing stage of the implementation that...
- parfor nodes in @jit functions - check with additional issues, like dpnp library calls
I am not sure that examples should be a part of the package. We could install if but it is mostly for developers (not users) and easiest way to work...
Support for `@guvectorize` is missing. Features: - [ ] Passing intra-device arrays - [ ] Launch asynchronous - [ ] Calling Device Functions - [ ] Explicitly control the maximum...
We currently do not have anything similar to `@cuda.reduce` and the output of this step should be a design to support a similar `@reduce` decorator for `numba-dppy`. Features to implement:...
dpex ufunc kernels cannot be called from other dpex device functions. Example: ```python @dppy.func def a_device_function(a): return a + 1 @vectorize(nopython=True) def ufunc_kernel(x, y): return a_device_function(x) + y def test_ufunc():...