7 lines
79 B
Python
7 lines
79 B
Python
import numba as nb
|
|
|
|
|
|
@nb.jit(nopython=True, parallel=True)
|
|
def foo():
|
|
pass
|