From 670d8e356d67d0cabaf47bfb81bfb78e2da1a73a Mon Sep 17 00:00:00 2001 From: Raz Luvaton <16746759+rluvaton@users.noreply.github.com> Date: Wed, 10 Apr 2024 22:34:01 +0300 Subject: [PATCH 1/2] run compare on perf cores --- benchmarks/community-benchmark/run.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/benchmarks/community-benchmark/run.sh b/benchmarks/community-benchmark/run.sh index 2866c18..d27e67e 100644 --- a/benchmarks/community-benchmark/run.sh +++ b/benchmarks/community-benchmark/run.sh @@ -100,7 +100,9 @@ fi fileName=output`date +%d%m%y-%H%M%S`.csv echo "Output will be saved to $fileName" pwd -./node-master benchmark/compare.js --old ./node-master --new ./node-pr $FILTER $RUNS -- $CATEGORY | tee $fileName + +# Run on performance cores +taskset -c 0-11 ./node-master benchmark/compare.js --old ./node-master --new ./node-pr $FILTER $RUNS -- $CATEGORY | tee $fileName cat $fileName | Rscript benchmark/compare.R mv $fileName $startDir From 1edf22d9c9206b66931ed35dfd1175cc77e722ed Mon Sep 17 00:00:00 2001 From: Raz Luvaton <16746759+rluvaton@users.noreply.github.com> Date: Wed, 10 Apr 2024 22:40:46 +0300 Subject: [PATCH 2/2] update http to https --- benchmarks/community-benchmark/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/community-benchmark/run.sh b/benchmarks/community-benchmark/run.sh index d27e67e..429c93d 100644 --- a/benchmarks/community-benchmark/run.sh +++ b/benchmarks/community-benchmark/run.sh @@ -57,7 +57,7 @@ getMACHINE_THREADS=`cat /proc/cpuinfo |grep processor|tail -n1|awk {'print $3'}` let getMACHINE_THREADS=getMACHINE_THREADS+1 #getting threads this way is 0 based. Add one optional MACHINE_THREADS $getMACHINE_THREADS rm -rf node -git clone http://github.com/nodejs/node.git +git clone https://github.com/nodejs/node.git cd node case $USE_CASE in 1)