We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
E.g. some better way to do something like:
library(doParallel) registerDoParallel(cl1 <- makeCluster(4)) cl_save <- foreach:::getDoPar()$data registerDoParallel(cl2 <- makeCluster(2)) foreach(ic = 1:10, .combine = 'c') %dopar% { ic } stopCluster(cl2) registerDoParallel(cl_save) foreach(ic = 1:10, .combine = 'c') %dopar% { ic } stopCluster(cl1)
The text was updated successfully, but these errors were encountered:
So basically being able to temporarily register a new backend, but restoring the previously registered one after.
Sorry, something went wrong.
Is FR #19 a generalization of this feature request?
Yes, something like that would help.
No branches or pull requests
E.g. some better way to do something like:
The text was updated successfully, but these errors were encountered: