right now workflow_map runs sequentially over the rows in the workflowset object and allows for parallelization within a model tune. For users that have HPC it would be great for a way to set a plan to control each row in the workflow set to be sent to a worker and run indep in each one.
library(future)
plan(list(batchtools_MY_HPC, multisession(workers(n=N))))
right now
workflow_mapruns sequentially over the rows in the workflowset object and allows for parallelization within a model tune. For users that have HPC it would be great for a way to set a plan to control each row in the workflow set to be sent to a worker and run indep in each one.