From 0ab0dae7733fad7f20fafed3c0ece211df9937e0 Mon Sep 17 00:00:00 2001 From: Emilien Bauer Date: Sat, 21 Oct 2023 15:53:54 +0100 Subject: [PATCH] Bigger 2D examples for single-node slurm job. --- fast/slurm-jobs/single-node.slurm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fast/slurm-jobs/single-node.slurm b/fast/slurm-jobs/single-node.slurm index 16f7255e78..99c9df7a6c 100644 --- a/fast/slurm-jobs/single-node.slurm +++ b/fast/slurm-jobs/single-node.slurm @@ -66,7 +66,7 @@ get_throughput() { # Iterate over benchmarks and cases, print simple CSV data to stdout # Copy-pastes nicely in Google Sheets echo bench_name,so,threads,Devito,xDSL -for bench in "wave2d_b.py -d 2048 2048 --nt 512" "wave3d_b.py -d 512 512 512 --nt 512" "diffusion_2D_wBCs.py -d 2048 2048 --nt 512" "diffusion_3D_wBCs.py -d 512 512 512 --nt 512" +for bench in "wave2d_b.py -d 8192 8192 --nt 1024" "wave3d_b.py -d 512 512 512 --nt 512" "diffusion_2D_wBCs.py -d 8192 8192 --nt 1024" "diffusion_3D_wBCs.py -d 512 512 512 --nt 512" do # Get the benchmark file for printing bench_name=$(echo $bench | cut -d ' ' -f1)