Skip to content

Commit

Permalink
Pin benchmarks to first 8 threads
Browse files Browse the repository at this point in the history
  • Loading branch information
Oipo committed Oct 28, 2024
1 parent d10acb7 commit e749935
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions benchmark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,16 @@ run_benchmarks ()
start="$1"/ichor_start_benchmark
start_stop="$1"/ichor_start_stop_benchmark
utils="$1"/ichor_utils_benchmark
eval $coroutine || exit 1
eval $event || exit 1
eval taskset -c 0-7 $coroutine || exit 1
eval taskset -c 0-7 $event || exit 1
echo -n "uring: "
eval $event -u || exit 1
eval $serializer || exit 1
eval $start -a || exit 1
eval $start -c || exit 1
eval $start_stop || exit 1
eval $utils -r || exit 1
eval $utils -a || exit 1
eval taskset -c 0-7 $event -u || exit 1
eval taskset -c 0-7 $serializer || exit 1
eval taskset -c 0-7 $start -a || exit 1
eval taskset -c 0-7 $start -c || exit 1
eval taskset -c 0-7 $start_stop || exit 1
eval taskset -c 0-7 $utils -r || exit 1
eval taskset -c 0-7 $utils -a || exit 1
}

if [ $REBUILD -eq 1 ]; then
Expand Down

0 comments on commit e749935

Please sign in to comment.