You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An implementation for the static_getitem function for DpnpNdArray is missing and that results in the lowering falling back to the generic lower_getitem that in turn resolves to the getitem_arraynd_intp call defined in numba/np/arrayobj.py.
In current main using Numba's function for DpnpNdArray works fine as the underlying data model for DpnpNdArray is the same as types.Array. However, with the changes introduced in #1083 the approach fails. Hence, we need a DpnpNdArray-specific implementation of getitem.
The text was updated successfully, but these errors were encountered:
An implementation for the
static_getitem
function forDpnpNdArray
is missing and that results in the lowering falling back to the genericlower_getitem
that in turn resolves to thegetitem_arraynd_intp
call defined innumba/np/arrayobj.py
.In current main using Numba's function for
DpnpNdArray
works fine as the underlying data model forDpnpNdArray
is the same astypes.Array
. However, with the changes introduced in #1083 the approach fails. Hence, we need aDpnpNdArray
-specific implementation ofgetitem
.The text was updated successfully, but these errors were encountered: