Skip to content

Commit

Permalink
Fixed job launching
Browse files Browse the repository at this point in the history
  • Loading branch information
kanellok committed Aug 7, 2023
1 parent 296af14 commit bb0d8f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion artifact.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ echo "================== Launching experiments for Figures 2, 3, 4, 6, 15, 16,

mkdir -p ./results/

source jobfile
sh ./jobfile

echo "====================================================================================="

Expand Down
2 changes: 1 addition & 1 deletion scripts/launch_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
execution_command = "sbatch -t 4-00:00:00 --mem=20GB -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+"\""
elif (native):
command = docker_command + " " + sniper_parameters + " " + output_command+" "+configuration_string+" "+trace_command+" &"
command = docker_command + " " + sniper_parameters + " " + output_command+" "+configuration_string+" "+trace_command+" > ./results/"+config_name+"_"+trace_name+".out &"
#command = docker_command + " " + sniper_parameters + " " + output_command+" "+configuration_string+" "+trace_command

jobfile.write(command)
Expand Down

0 comments on commit bb0d8f9

Please sign in to comment.