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
Running test-parallel.R on a Windows machine gives the following error:
test-parallel.R
── Error ('test-parallel.R:78:3'): (code run outside of `test_that()`) ───────── Error in `makeForkCluster(nnodes = spec, ...)`: fork clusters are not supported on Windows Backtrace: ▆ 1. └─MADMMplasso (local) mad_wrap(legacy = TRUE, parallel = TRUE, pal = FALSE) at test-parallel.R:92:1 2. ├─base::suppressMessages(...) at test-parallel.R:78:3 3. │ └─base::withCallingHandlers(...) 4. └─MADMMplasso::MADMMplasso(...) 5. └─parallel::makeCluster(cl1, type = "FORK") at MADMMplasso/R/MADMMplasso.R:210:5 6. └─parallel::makeForkCluster(nnodes = spec, ...)
A couple possible solutions
parallel = TRUE
The text was updated successfully, but these errors were encountered:
Adding workaround for parallelization on Windows (#46)
8406510
Not as elegant as simply using `makeCluster()`, but this avoids rewriting some unit tests. May be improved in the future.
wleoncio
Successfully merging a pull request may close this issue.
Running
test-parallel.R
on a Windows machine gives the following error:A couple possible solutions
parallel = TRUE
on WindowsThe text was updated successfully, but these errors were encountered: