Andres Perez Hortal
Andres Perez Hortal
Recently I stumbled upon [this Github action (rtds-action)](https://github.com/dfm/rtds-action) designed to build example galleries using Github Actions and building the documentation using ReadTheDocs. I was curious to try this out and...
Now, the pySTEPS tests are mostly done by running the examples. It is a good idea to implement scripts that test different functions. A good and simple testing framework is...
This PR update adds `cache=True` to the `@jit` and `@jit_module` decorators. This avoid the jit compilation every time the module is imported. See `https://numba.pydata.org/numba-doc/latest/user/jit.html#cache` for more details. This PR closes...
Hi @vlouf, Currently, numba compiles the modules each time that they are imported. This adds a few seconds to the total computation time that can be saved by adding `cache=True`...