From 7597c654f8fbef48b0bd3492592db34307e3d827 Mon Sep 17 00:00:00 2001 From: aniketfuryrocks Date: Thu, 15 Jun 2023 19:32:18 +0530 Subject: [PATCH] 200 threads and run in release --- bench-rpc-by-threads.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bench-rpc-by-threads.sh b/bench-rpc-by-threads.sh index ace7e50..40a7b61 100755 --- a/bench-rpc-by-threads.sh +++ b/bench-rpc-by-threads.sh @@ -10,8 +10,8 @@ EOF fi -for i in {5..100..5} +for i in {5..200..5} do - cargo run -- -a -t $i -o "$1/$i.json" "${@:2}" + cargo run --release -- -a -t $i -o "$1/$i.json" "${@:2}" sleep 10s -done \ No newline at end of file +done