aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/analysis/scripts/shared/burning_ship_shared_3.sh
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2024-04-26 21:32:54 -0400
committerJP Appel <jeanpierre.appel01@gmail.com>2024-04-26 21:32:54 -0400
commit930aea430a1c9576674b821571ede017699d75e1 (patch)
tree31c9b9c294291f292fd18645bcdedea196bf51cb /analysis/scripts/shared/burning_ship_shared_3.sh
parent161d49652f4268ba45f979f5965db4d6d9887a0f (diff)
fixed julia set computation having emdash instead of hyphen, add more scripts
Diffstat (limited to 'analysis/scripts/shared/burning_ship_shared_3.sh')
-rw-r--r--analysis/scripts/shared/burning_ship_shared_3.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/analysis/scripts/shared/burning_ship_shared_3.sh b/analysis/scripts/shared/burning_ship_shared_3.sh
new file mode 100644
index 0000000..f2e9c0c
--- /dev/null
+++ b/analysis/scripts/shared/burning_ship_shared_3.sh
@@ -0,0 +1,17 @@
+#!/bin/bash
+#SBATCH -p shared
+#SBATCH -t 0:30:00
+#SBATCH -o analysis/data/%x.%j.csv
+#SBATCH -e analysis/error/%x.%j.err
+#SBATCH --cpus-per-task=3
+
+THREADS=$SLURM_CPUS_PER_TASK
+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/shared-fractals -p -x $res -y $res -o /dev/null -f burning_ship)
+ echo "$performance_info,$THREADS,$BLOCK_SIZE"
+done