numba eager compilation? Whats the pattern?
问题 I looked into eager compilation on numba's website and couldnt figure out, how to specify the types: The example they use is this: from numba import jit, int32 @jit(int32(int32, int32)) def f(x, y): # A somewhat trivial example return x + y # source: http://numba.pydata.org/numba-doc/latest/user/jit.html#eager-compilation as you can see it gets 2 variables as input and returns one single variable. all of them should be int32. One way to understand the decorator is that @jit(int32(int32, int32