diff options
| author | JP Appel <jeanpierre.appel01@gmail.com> | 2024-04-26 19:23:22 -0400 |
|---|---|---|
| committer | JP Appel <jeanpierre.appel01@gmail.com> | 2024-04-26 19:23:22 -0400 |
| commit | 161d49652f4268ba45f979f5965db4d6d9887a0f (patch) | |
| tree | 42ac336fc27d20c663abba691ae6f6252497f2d1 /analysis/scripts/serial/multibrot_serial.sh | |
| parent | c176f9491411f53000b0350cafc1d17db0ef09ec (diff) | |
serial data collection scripts
Diffstat (limited to 'analysis/scripts/serial/multibrot_serial.sh')
| -rw-r--r-- | analysis/scripts/serial/multibrot_serial.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/analysis/scripts/serial/multibrot_serial.sh b/analysis/scripts/serial/multibrot_serial.sh new file mode 100644 index 0000000..7174198 --- /dev/null +++ b/analysis/scripts/serial/multibrot_serial.sh @@ -0,0 +1,16 @@ +#!/bin/bash +# SBATCH -p shared +# -t 2:30:00 +# -o analysis/data/%x.%j.csv +# -e analysis/error/%x.%j.err + +THREADS=1 +BLOCK_SIZE=1 + +square_resolutions="10 100 1000 10000 10000" +square_resolutions+=" 16 32 64 128 256 512 1024 2048 4096 8192 16384" + +for res in $square_resolutions; do + performance_info=$(build/serial-fractals -p -d 3 -x $res -y $res -o /dev/null -f multibrot) + echo "$performance_info,$THREADS,$BLOCK_SIZE" +done |
