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
as requested in #311 figure out a way to parallelize the load_posterior_particle() function which calls run_simulation. Either with Pool() or with jax.pmap().
The main issues faced when trying this earlier (and why it is not included in #316 ) is that Pool() requires pickle serializibility and pmap only works with jax operations, which our code breaks both of in its current architecture. Maybe I am missing something here.
The text was updated successfully, but these errors were encountered:
as requested in #311 figure out a way to parallelize the
load_posterior_particle()
function which callsrun_simulation
. Either withPool()
or withjax.pmap()
.The main issues faced when trying this earlier (and why it is not included in #316 ) is that
Pool()
requires pickle serializibility andpmap
only works with jax operations, which our code breaks both of in its current architecture. Maybe I am missing something here.The text was updated successfully, but these errors were encountered: