alsk/scripts/run_celero

10 lines
201 B
Plaintext
Raw Normal View History

2021-05-10 16:14:13 +00:00
#!/bin/bash
bin=$(git rev-parse --show-toplevel)/release/celero_alsk
benchs=$(${bin} --list|tail -n+2|tr -d ' '|tr '\n' ' ')
for bench in ${benchs}; do
taskset -c 0,2,4,6 ${bin} -g "${bench}"
done