Amazing work with this framework, and I am really happy to see that you used numba to speed up the computation. I was wondering if there is a reason why the prange function of numba has not been used to parallelize some for-loops. They have a small doc page about prange and its use.
By simply skimming the code, I found some possible places where prange could be used:
If there is an interest in implementing some prange functionality, I could try to make some changes. It would be nice also to have some standard tests, so the framework can be benchmarked and tested so that the output hasn't altered by the modifications made. Do you have any data for that currently?
Amazing work with this framework, and I am really happy to see that you used numba to speed up the computation. I was wondering if there is a reason why the
prangefunction of numba has not been used to parallelize some for-loops. They have a small doc page about prange and its use.By simply skimming the code, I found some possible places where
prangecould be used:and possibly here too:
If there is an interest in implementing some
prangefunctionality, I could try to make some changes. It would be nice also to have some standard tests, so the framework can be benchmarked and tested so that the output hasn't altered by the modifications made. Do you have any data for that currently?