Skip to content
Snippets Groups Projects
Commit 04bf6cd4 authored by Charles Romain's avatar Charles Romain
Browse files

Forward simulate by 10 grains instead of 5 per jobs. Small jobs are pending too much in low queue

parent fcc90253
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@ function slurmpars = gtSlurmGetDefaultSlurmpars(executable, parameters, varargin
slurmpars.distribute = false;
case('gtForwardSimulate_v2')
if ~isempty(slurmpars.list)
slurmpars.njobs = min(40, round(numel(slurmpars.list) / 5));
slurmpars.njobs = min(40, round(numel(slurmpars.list) / 10));
else
slurmpars.njobs = 40;
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment