我正在将 Numba 与 Anaconda 一起使用,并想知道为什么
@jit(argtypes=[int16[:], int16[:]])
def index(ic, nc):
return ic[0] + nc[0] * (ic[1] + nc[1] * ic[2])
不起作用:
TypeError: 'type' object has no attribute '__getitem__'
但是,如果我使用@autojit
而不是@jit(..)
一切都很好。