You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This happens because we use jited closures for kernel evaluations, which means that numba has to recompile the functions every time the bandwidth changes. We should probably move the closures to separate functions and not close on the bandwidth.
This happens because we use
jited closures for kernel evaluations, which means that numba has to recompile the functions every time the bandwidth changes. We should probably move the closures to separate functions and not close on the bandwidth.