Commit 880a6260 authored by iker_martin's avatar iker_martin
Browse files

Hotfix en Checkrun - Variable mal escrita

parent e1b825e9
...@@ -98,10 +98,11 @@ then ...@@ -98,10 +98,11 @@ then
for ((i=0; i<qty; i++)) for ((i=0; i<qty; i++))
do do
fin=$(grep -n - R* | grep Tex | cut -d ':' -f2 | head -n1) fin=$(grep -n - R* | grep Tex | cut -d ':' -f2 | head -n1)
init=$(($fin - 6)) init=$(($fin - 7))
sed -i ''$init','$fin'd' R${realRun}_Global.out sed -i ''$init','$fin'd' R${realRun}_Global.out
aux=$(($fin / 7)) #Utilizado para saber de entre las ejecuciones del fichero, cual es la erronea #Se borran las lineas de los ficheros locales asociados
aux=$(($fin / 8)) #Utilizado para saber de entre las ejecuciones del fichero, cual es la erronea
fin=$(($aux * 5)) fin=$(($aux * 5))
init=$(($fin - 4)) init=$(($fin - 4))
for ((j=0; j<cantidadGrupos; j++)); do for ((j=0; j<cantidadGrupos; j++)); do
...@@ -114,11 +115,11 @@ then ...@@ -114,11 +115,11 @@ then
proc_parents=$(echo $proc_list | cut -d ' ' -f1) proc_parents=$(echo $proc_list | cut -d ' ' -f1)
proc_children=$(echo $proc_list | cut -d ' ' -f2) proc_children=$(echo $proc_list | cut -d ' ' -f2)
nodes=8 # Maximo actual nodes=8 # Maximo actual
if [ $procs_parents -gt $procs_children ] if [ $proc_parents -gt $proc_children ]
then then
nodes=$(($procs_parents / 20)) nodes=$(($proc_parents / 20))
else else
nodes=$(($procs_children / 20)) nodes=$(($proc_children / 20))
fi fi
sbatch -N $nodes $dir$execDir./singleRun.sh config$realRun.ini $index sbatch -N $nodes $dir$execDir./singleRun.sh config$realRun.ini $index
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment