We have recently added joblib as a dependency to parallelize bootstrap inference in the decompose() class.
We should make use of it in the ritest method as well, when we loop over pf.feols() when computing randomization inference via the "randomization-t" algo.
We have recently added
joblib
as a dependency to parallelize bootstrap inference in thedecompose()
class.We should make use of it in the
ritest
method as well, when we loop overpf.feols()
when computing randomization inference via the "randomization-t" algo.In a nutshell, we want to parallelize this for loop with
joblib
: https://github.com/py-econometrics/pyfixest/blob/611e5ccdfd2a52cd41890e328bb5358f7ed240c9/pyfixest/estimation/ritest.py#L83