Skip to content
Snippets Groups Projects
Commit fffe9041 authored by Wolfgang Ludwig's avatar Wolfgang Ludwig
Browse files

fix bug in submission of reconstructions which are equally distributed over the cluster

parent 73b112e8
No related branches found
No related tags found
No related merge requests found
......@@ -218,7 +218,8 @@ set.oarparameters = strrep(set.oardirectives, '.oar', '.params');
% open the file .params and write the parameters for each job on each line
fid = fopen(set.oarparameters, 'w');
jobsize = ceil((last-first+1)/njobs);
jobsize = floor((last-first+1)/njobs);
% construct lists of grainids (will only be used when oar.distribute=true)
for i = 1 : njobs
......
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