It is me again :)
Does the nesting of the futures also work with BiocParallel.FutureParam like doFuture and Future does?
Does this locally:
library("BiocParallel")
register(MulticoreParam(36))
Translate to this when working with a remote machine:
library("BiocParallel.FutureParam")
register(FutureParam())
plan(list(tweak(remote, workers = "monster"), multicore))
With the same syntax of %->% to "peel off" futures?
It is me again :)
Does the nesting of the futures also work with BiocParallel.FutureParam like doFuture and Future does?
Does this locally:
Translate to this when working with a remote machine:
With the same syntax of %->% to "peel off" futures?