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
Has anyone come across/considered furrr before? It implements purrr functions in parallel. May be low hanging fruit to get performance gains wherever purrr::map is used in the package.
Has anyone come across/considered furrr before? It implements purrr functions in parallel. May be low hanging fruit to get performance gains wherever
purrr::map
is used in the package.Also claims to work on Windows, r.e. #53
Repo: https://github.com/DavisVaughan/furrr
E.g. quick test using the VRPINS graphs (in inst/extdat) gives at least 7 times speedup of netdis_centred_graphlet_counts on my 8 core iMac.
Original (takes ~3.5 seconds):
With furrr (takes ~0.5 seconds):
NB: The default
plan
is to run sequentially, in which case it runs the same aspurrr::map
. Recommendation is to leave setting the plan to the user: https://www.rdocumentation.org/packages/future/versions/1.14.0/topics/planThe text was updated successfully, but these errors were encountered: