X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=benchmarks%2Fversus-external-pools%2Fbench.sh;h=34ebb788c0cd90341e9264cc1cb83b19f3c7568f;hb=719cb07a5270674b28f3a21d755524e90b01365e;hp=05c156c92b27d774f56e742b19e1df7fe81e916e;hpb=be0676b3936d75f22ce55b0f71a1fb03d008a01c;p=poolifier.git diff --git a/benchmarks/versus-external-pools/bench.sh b/benchmarks/versus-external-pools/bench.sh index 05c156c9..34ebb788 100755 --- a/benchmarks/versus-external-pools/bench.sh +++ b/benchmarks/versus-external-pools/bench.sh @@ -1,37 +1,42 @@ -export NODE_ENV=production +#!/usr/bin/env bash -# Execute bench -# export POOL_SIZE=8 -# export NUM_ITERATIONS=10000 -# hyperfine --export-markdown BENCH-10000.MD --min-runs 10 \ -# 'node dynamic-poolifier.js' \ -# 'node dynamic-suchmokuo-node-worker-threads-pool.js' \ -# 'node fixed-poolifier.js' \ -# 'node static-suchmokuo-node-worker-threads-pool.js' \ -# 'node piscina.js' +### The -t argument permit to specify the type of task that you want to benchmark. +### The -s argument permit to specify the size of task that you want to benchmark. +### Supported values are CPU_INTENSIVE, IO_INTENSIVE -# echo "Sleeping...." -# sleep 60 +taskType='CPU_INTENSIVE' +taskSize=5000 +while getopts "t:s:h" option +do + case "${option}" in + t) + taskType=${OPTARG} + ;; + s) + taskSize=${OPTARG} + ;; + *|h) + echo "Usage: $0 [-t taskType] [-s taskSize]" + exit 1 + ;; + esac +done +echo 'Running benchmarks for task type:' ${taskType} 'and task size:' ${taskSize} +export TASK_TYPE=${taskType} +export TASK_SIZE=${taskSize} +# Execute bench +export NODE_ENV=production export POOL_SIZE=10 export NUM_ITERATIONS=100000 -hyperfine --export-markdown BENCH-100000.MD --min-runs 10 \ - 'node static-suchmokuo-node-worker-threads-pool.js' \ - 'node dynamic-poolifier.js' \ - 'node piscina.js' - -# export POOL_SIZE=8 -# export NUM_ITERATIONS=50000 -# hyperfine --export-markdown BENCH-50000.MD --min-runs 10 \ -# 'node dynamic-poolifier.js' \ -# 'node dynamic-suchmokuo-node-worker-threads-pool.js' \ -# 'node fixed-poolifier.js' \ -# 'node static-suchmokuo-node-worker-threads-pool.js' \ -# 'node piscina.js' - -# export NUM_ITERATIONS=100000 -# hyperfine --export-markdown BENCH-50000.MD --min-runs 20 \ -# 'node dynamic-poolifier.js' \ -# 'node static-suchmokuo-node-worker-threads-pool.js' \ -# 'node piscina.js' - +case "$OSTYPE" in + darwin*) + caffeinate ./hyperfine_benchmarks.sh + ;; + linux*) + systemd-inhibit ./hyperfine_benchmarks.sh + ;; + *) + echo "Unsupported $OSTYPE" + ;; +esac