summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorConnor Moore <connor@hhmoore.ca>2026-02-02 15:08:22 -0500
committerConnor Moore <connor@hhmoore.ca>2026-02-02 15:08:22 -0500
commit48a7af5b0c0facd9c3e99801476d44f6b218b363 (patch)
tree83868f0635d7995fcc94364b70269570a0c815c8 /Makefile
parentc896807fd9fc5b5f2cdbec9eef717f815af3779a (diff)
Updated makefile and plotting script
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 629cda6..52de798 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,7 @@ S_START:= 100
S_END := 3500
S_STEP := 100
-L_END := 20000
+L_END := 12000
L_STEP := 500
all:
@@ -39,11 +39,11 @@ tests: clean
echo "$(GREEN)Running parallel short runs with $$opt$(RESET)"; \
export OMP_NUM_THREADS=8; \
export MKL_NUM_THREADS=8; \
- ./bin/$(GCC).parallel.out $(S_START) $(S_END) $(S_STEP) yes > results/$(GCC)_short_parallel; \
- ./bin/$(oneAPI).parallel.out $(S_START) $(S_END) $(S_STEP) yes > results/$(oneAPI)_short_parallel; \
+ ./bin/$(GCC).parallel.out $(S_START) $(S_END) $(S_STEP) yes > results/$(GCC)_short_parallel_$$opt.out; \
+ ./bin/$(oneAPI).parallel.out $(S_START) $(S_END) $(S_STEP) yes > results/$(oneAPI)_short_parallel_$$opt.out; \
echo "$(GREEN)Running parallel long runs with $$opt$(RESET)"; \
- ./bin/$(GCC).parallel.out $(S_END) $(L_END) $(L_STEP) no > results/$(GCC)_long_parallel; \
- ./bin/$(oneAPI).parallel.out $(S_END) $(L_END) $(L_STEP) no > results/$(oneAPI)_long_parallel; \
+ ./bin/$(GCC).parallel.out $(S_END) $(L_END) $(L_STEP) no > results/$(GCC)_long_parallel_$$opt.out; \
+ ./bin/$(oneAPI).parallel.out $(S_END) $(L_END) $(L_STEP) no > results/$(oneAPI)_long_parallel_$$opt.out; \
done
plots: