Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
propagate the network model tweaks to simgrid
[simgrid.git] / src / smpi / smpirun.in
index c5a4b17..cad450d 100755 (executable)
@@ -63,7 +63,7 @@ while true; do
       exit
    ;;
    
-   "--cfg="*)
+   "--cfg="*|"--log="*|"--network_model="*)
      SIMOPTS="$SIMOPTS $1"
      shift 1
    ;;
@@ -140,9 +140,22 @@ fi
 ##  hostfile has less than i lines.
 ##----------------------------------------------------------
 
+HAVE_SEQ="`which seq`"
+HAVE_JOT="`which jot`"
+
+if [ -n "${HAVE_SEQ}" ]; then
+       SEQ=`${HAVE_SEQ} 0 $((${NUMPROCS}-1))`
+else
+      cnt=0
+       while (( $cnt < ${NUMPROCS} )) ; do
+           SEQ="$SEQ $cnt"
+           cnt=$((cnt + 1));
+       done
+fi
+
 ##---- generate <process> tags------------------------------
 
-for i in `seq 0 $((${NUMPROCS}-1))` 
+for i in ${SEQ} 
 do
   if [ -n "${HOSTFILE}" ]; then
        j=$(( $i % ${NUMHOSTS} ))