aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/analysis/scripts/serial/multicorn_serial.sh
blob: 3abba52592c57c5ccf6bc1acc2ba6aa3d3559903 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 multicorn)
    echo "$performance_info,$THREADS,$BLOCK_SIZE"
done