-
Notifications
You must be signed in to change notification settings - Fork 24
Open
Labels
Description
If we add numba as a requirement instead of skmonaco, we can then then deploy with just-in-time compiler
https://numba.pydata.org/numba-doc/dev/user/5minguide.html
Adding this line above all functions in basis_functions.py and before forward_method() and int_pot1d() / 2d() / 3d() in KCSD.py
@jit(nopython=True)
already improves the performance drastically, I am able to knock off ~7 secs from a 30 sec tests.