Commit c6b3344d authored by iker_martin's avatar iker_martin
Browse files

Minor bugfixes for Nasp

parent 1718b5a3
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
#SBATCH -p P1 #SBATCH -p P1
#SBATCH -N 1 #SBATCH -N 1
#SBATCH --mem-per-cpu=6000
#SBATCH --exclusive
partition='P1' partition='P1'
......
#!/bin/bash #!/bin/bash
# Runs in a given current directory all .ini files # Obtains for a given file the maximum amount of processes to allocate
# Parameter 1(Optional) - Amount of executions per file. Must be a positive number # Parameter 1(Optional) - Amount of executions per file. Must be a positive number
#====== Do not modify these values ======= #====== Do not modify these values =======
config_file=$1 config_file=$1
......
...@@ -41,8 +41,8 @@ then ...@@ -41,8 +41,8 @@ then
fi fi
limit_time=0 limit_time=0
exec_lines_basic=6 exec_lines_basic=7 # 1 Config + 6 Times
iter_lines_basic=3 iter_lines_basic=3 # 1 Config + 1 Group + AsynchIters
exec_total_lines=$(($exec_lines_basic+$total_stages+$total_groups)) exec_total_lines=$(($exec_lines_basic+$total_stages+$total_groups))
iter_total_lines=$(($iter_lines_basic+$total_stages*2+1)) iter_total_lines=$(($iter_lines_basic+$total_stages*2+1))
exec_remove=$(($exec_lines_basic+$total_stages+$total_groups-1)) exec_remove=$(($exec_lines_basic+$total_stages+$total_groups-1))
......
#!/bin/bash #!/bin/bash
#SBATCH --mem-per-cpu=6000
#SBATCH --exclusive
#SBATCH --exclude=c02,c01,c00 #SBATCH --exclude=c02,c01,c00
#SBATCH -p P1 #SBATCH -p P1
......
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