Commit dceeea8c authored by iker_martin's avatar iker_martin
Browse files

Fixed minor bug in Checkrun. Other minor changes.

parent 39e1435c
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
#SBATCH -N 1 #SBATCH -N 1
#SBATCH --exclude=c01,c00,c02 #SBATCH --exclude=c01,c00,c02
dir="/home/martini/malleability_benchmark" dir="/home/martini/tmp/malleability_benchmark"
partition='P1' partition='P1'
codeDir="/Codes" codeDir="/Codes"
......
#!/bin/bash #!/bin/bash
dir="/home/martini/malleability_benchmark/" dir="/home/martini/tmp/malleability_benchmark/"
partition="P1" partition="P1"
# Checks if all the runs in the current working directory performed under a # Checks if all the runs in the current working directory performed under a
...@@ -68,7 +68,7 @@ fi ...@@ -68,7 +68,7 @@ fi
# then the scripts exits. # then the scripts exits.
#The user must figure out what to do with those runs. #The user must figure out what to do with those runs.
qtyG=$(ls R*_Global.out | wc -l) qtyG=$(ls R*_Global.out | wc -l)
qtyG=$(($qtyG * 2)) qtyG=$(($qtyG * $total_groups))
qtyL=$(ls R*_G*N*.out | wc -l) qtyL=$(ls R*_G*N*.out | wc -l)
if [ "$qtyG" == "$qtyL" ] if [ "$qtyG" == "$qtyL" ]
then then
......
...@@ -175,6 +175,7 @@ def check_sections_assumptions(datasets): ...@@ -175,6 +175,7 @@ def check_sections_assumptions(datasets):
if i>0: if i>0:
if datasets[total_stages+1+i][Config_section.P_RESIZE_PROCS.value] == datasets[total_stages+i][Config_section.P_RESIZE_PROCS.value]: if datasets[total_stages+1+i][Config_section.P_RESIZE_PROCS.value] == datasets[total_stages+i][Config_section.P_RESIZE_PROCS.value]:
return False return False
return True return True
def correct_adr(sdr, adr_percentage, w_general_dataset): def correct_adr(sdr, adr_percentage, w_general_dataset):
......
#!/bin/bash #!/bin/bash
dir="/home/martini/malleability_benchmark/" dir="/home/martini/tmp/malleability_benchmark/"
# Creates a directory with all possible and valid combinations of configuration files # Creates a directory with all possible and valid combinations of configuration files
# that can be created from a given complex configuration file. # that can be created from a given complex configuration file.
......
#!/bin/bash #!/bin/bash
dir="/home/martini/malleability_benchmark" dir="/home/martini/tmp/malleability_benchmark"
partition="P1" partition="P1"
exclude="c00,c01,c02" exclude="c00,c01,c02"
......
#!/bin/bash #!/bin/bash
dir="/home/martini/malleability_benchmark" dir="/home/martini/tmp/malleability_benchmark"
partition="P1" partition="P1"
exclude="c00,c01,c02" exclude="c00,c01,c02"
......
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