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
Now that we have a pure Python implementation of Natural Neighbor interpolation, we need to do some work to make it fast enough for big grids. The options I see are Numba and Cython, and I lean towards Numba.
Pro Numba:
No need to ship compiled packages
Active work to continue to optimize stuff
No need to annotate source with anything more than a decorator
Con Numba:
Not necessarily an easy dependency (though Conda helps). We could also ship a do-nothing decorator so Numba is optional
Might need to refactor code to run better under Numba
I saw some really cool stuff from the Numba tutorial at Scipy 2016, so I'm going to give that a shot first.
The text was updated successfully, but these errors were encountered:
Now that we have a pure Python implementation of Natural Neighbor interpolation, we need to do some work to make it fast enough for big grids. The options I see are Numba and Cython, and I lean towards Numba.
Pro Numba:
Con Numba:
I saw some really cool stuff from the Numba tutorial at Scipy 2016, so I'm going to give that a shot first.
The text was updated successfully, but these errors were encountered: