From a07e436b846bcfd05dc1509c646848596a5be7b5 Mon Sep 17 00:00:00 2001 From: Giulio Ermanno Pibiri Date: Tue, 10 Dec 2024 20:09:54 +0100 Subject: [PATCH] fix to script --- script/run_benchmark.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/run_benchmark.sh b/script/run_benchmark.sh index cd5b15a..9849279 100644 --- a/script/run_benchmark.sh +++ b/script/run_benchmark.sh @@ -41,6 +41,6 @@ for config in "${configs[@]}"; do IFS=' ' read -r l a e <<< "$config" # run the command 3 times for each configuration for i in {1..3}; do - ./build -n "$1" -l "$l" -a "$a" -e "$e" -r xor -b skew -s 1234567890 -q 10000000 -p 3000 -t 8 --dense --minimal + ./build -n "$1" -l "$l" -a "$a" -e "$e" -r add -b opt -s 1234567890 -q 10000000 -p 3000 -t 8 --dense --minimal done done