Skip to content

Commit

Permalink
Removed Slurm parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
kanellok committed Sep 3, 2023
1 parent a6ae715 commit 12ad2dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/launch_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,10 @@
if (slurm):
# SLURM parameters are overprovisioned just in case the simulation takes longer than expected
if args.excluded_nodes is not None:
execution_command = "sbatch -t 3-00:00:00 --mem=10GB --exclude="+args.excluded_nodes+" -J {}_{} --output=./results/{}_{}.out --error=./results/{}_{}.err docker_wrapper.sh ".format(
execution_command = "sbatch --exclude="+args.excluded_nodes+" -J {}_{} --output=./results/{}_{}.out --error=./results/{}_{}.err docker_wrapper.sh ".format(
config_name, trace_name, config_name, trace_name, config_name, trace_name)
else:
execution_command = "sbatch -t 3-00:00:00 --mem=10GB -J {}_{} --output=./results/{}_{}.out --error=./results/{}_{}.err docker_wrapper.sh ".format(
execution_command = "sbatch -J {}_{} --output=./results/{}_{}.out --error=./results/{}_{}.err docker_wrapper.sh ".format(
config_name, trace_name, config_name, trace_name, config_name, trace_name)
command = execution_command + "\"" + docker_command + " " + sniper_parameters + \
" " + output_command+" "+configuration_string+" "+trace_command+"\""
Expand Down

0 comments on commit 12ad2dc

Please sign in to comment.