Skip to content

Commit b43ea28

Browse files
committed
Merge pull request #572 from izaid/numba
Fix for Numba
2 parents d5430fa + d290153 commit b43ea28

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dynd/nd/functional.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ cdef public object _jit(object func, intptr_t nsrc, const _type *src_tp):
7070

7171
# Compile the function with Numba
7272
func.compile(signature)
73-
compile_res = func._compileinfos[signature]
73+
compile_res = func.overloads[signature]
7474

7575
# Check if there is a corresponding return type in DyND
7676
cdef _type dst_tp = from_numba_type(compile_res.signature.return_type)

0 commit comments

Comments
 (0)