diff --git a/scripts/Benchmarks/generate_benchmark_scripts.jl b/scripts/Benchmarks/generate_benchmark_scripts.jl index 071177a..4051e35 100644 --- a/scripts/Benchmarks/generate_benchmark_scripts.jl +++ b/scripts/Benchmarks/generate_benchmark_scripts.jl @@ -96,7 +96,7 @@ phys_types = [ ]; # Template -template = read("$(ENV["SCRATCH"])/$dir_name/scripts/Benchmarks/jobtemplate_gadi.sh",String) +template = read("$(ENV["SCRATCH"])/$dir_name/scripts/Benchmarks/jobtemplate.sh",String) ## Generate Jobs jobs_by_phys = map(x->(x[1],generate_jobs(template,x[1],x[2],x[3])),phys_types); diff --git a/scripts/Benchmarks/jobtemplate.sh b/scripts/Benchmarks/jobtemplate.sh index 4bee92f..ed24050 100644 --- a/scripts/Benchmarks/jobtemplate.sh +++ b/scripts/Benchmarks/jobtemplate.sh @@ -1,7 +1,7 @@ #!/bin/bash #PBS -P np01 -#PBS -q normal +#PBS -q normal #PBS -N "{{:name}}" #PBS -l ncpus={{:ncpus}} #PBS -l mem={{:mem}}GB @@ -12,7 +12,7 @@ source $HOME/hpc-environments/gadi/load-intel.sh PROJECT_DIR=$SCRATCH/{{:dir_name}}/ mpiexec -n {{:ncpus}} julia --project=$PROJECT_DIR --check-bounds no -O3 \ - $PROJECT_DIR/scripts/Benchmarks/benchmark_gadi.jl \ + $PROJECT_DIR/scripts/Benchmarks/benchmark.jl \ {{:name}} \ {{{:write_dir}}} \ {{:type}} \