When does a numba function compile?
问题 I'm working off this example: http://numba.pydata.org/numba-doc/0.15.1/examples.html#multi-threading and it states that: You should make sure inner_func is compiled at this point, because the compilation must happen on the main thread. This is the case in this example because we use jit(). It seems in the example that calling jit on a function ensures compilation at that time. Would the multithreaded example work if instead of calling jit on the function we had used jit with argument types