-
Notifications
You must be signed in to change notification settings - Fork 3
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
job scripts for candide #13
Comments
there are still memory problems- Im getting this error for the gaussian process regressor: |
the solution appears to be here, I will give it a try |
solution above works, but there is now an issue:
|
Are you running it on a compute node? |
I can run on my laptop and in a notebook, so I have tried the script on the login node just to see if the chains get started. I am trying now on a compute node have increased the memory allocation
|
increasing the memory gives the same error but the usage does not really get close to the max:
|
ah so apparently when using a multiprocessing.Pool, the default way to start the processes is fork. The issue with fork is that the entire process is duplicated. the script was using a default number of processes equal to the number of cores on the node, even if I did not allocate the entire note in the batch queue script. I tried to make the number of processes a user input, and now the job is running. hopefully it works |
create a sample script to submit to the batch queue and a script version of the code
The text was updated successfully, but these errors were encountered: