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
It seems to me that all inference using Population is done single-threaded. But it is a perfect target for trivial parallelization, because all the calculations are independent in a list. One could easily use e.g. https://hackage.haskell.org/package/parallel to make use of several cores.
The text was updated successfully, but these errors were encountered:
Agreed. The caveat (as discussed) being that resampling is decidedly not parallel, so the advantage depends on the rate of the resampling being reasonably low. That said, I think parallelization here would likely be an easy performance win.
It seems to me that all inference using
Population
is done single-threaded. But it is a perfect target for trivial parallelization, because all the calculations are independent in a list. One could easily use e.g. https://hackage.haskell.org/package/parallel to make use of several cores.The text was updated successfully, but these errors were encountered: