Changeset 20430


Ignore:
Timestamp:
04/04/16 14:45:33 (9 years ago)
Author:
jbondzio
Message:

BUG: whenever not interactive, add & to source command so that sourcing the queueing script does not wait for job completion

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/classes/clusters/generic.m

    r20120 r20430  
    9797                                        else
    9898                                                if IssmConfig('_HAVE_MPI_'),
    99                                                         fprintf(fid,'mpiexec -np %i %s/%s %s %s %s 2> %s.errlog >%s.outlog ',cluster.np,cluster.codepath,executable,EnumToString(solution),[cluster.executionpath '/' dirname],modelname,modelname,modelname);
     99                                                        fprintf(fid,'mpiexec -np %i %s/%s %s %s %s 2> %s.errlog >%s.outlog &',cluster.np,cluster.codepath,executable,EnumToString(solution),[cluster.executionpath '/' dirname],modelname,modelname,modelname);
    100100                                                else
    101                                                         fprintf(fid,'%s/%s %s %s %s 2> %s.errlog >%s.outlog ',cluster.codepath,executable,EnumToString(solution),[cluster.executionpath '/' dirname],modelname,modelname,modelname);
     101                                                        fprintf(fid,'%s/%s %s %s %s 2> %s.errlog >%s.outlog &',cluster.codepath,executable,EnumToString(solution),[cluster.executionpath '/' dirname],modelname,modelname,modelname);
    102102                                                end
    103103                                        end
Note: See TracChangeset for help on using the changeset viewer.