From 48a7af5b0c0facd9c3e99801476d44f6b218b363 Mon Sep 17 00:00:00 2001 From: Connor Moore Date: Mon, 2 Feb 2026 15:08:22 -0500 Subject: Updated makefile and plotting script --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Makefile') 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: -- cgit v1.2.3