-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
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
Error using BiocParallel on Travis #61
Comments
I've been seeing weird issues with MulticoreParam hanging or throwing errors recently (on my laptop, not on Travis). I didn't have time to debug them, so I just switch to DoparParam (the one based on foreach backends) and that worked fine. |
The problems are likely either a port not being available (use |
Thanks @mtmorgan. I am looking into the ports suggestion, as there's no (large) serialisation. What ports, if any, are used in |
It chooses a random port in 11000-12000. Also, |
I have had a similar problem: my unit tests suddenly fail when I run them on Travis:
And my examples then fail as well:
Strangely enough, it seems this problem went away when I set |
I recently experienced the following error running parallel code with
BiocParallel
on Travis:The error was reported here happened when running
MSnbase::quantify
that usesBiocParallel
. Registering aSerialParam
instead of the defaultMulticoreParam
fixes the issue and now builds fine on Travis. I raised the issue on Travis directly, and it was suggested that there might be something wrong inBiocParallel
.Any idea?
The text was updated successfully, but these errors were encountered: