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