### Sysbench is a suite of microbenchmarks. This runs the CPU microbench which
### calculates primes up to a certain value using varying numbers of instances.
### In this configuration, it calculates primes up to 25000 using between 1 and
### 2*NUMCPUS threads.

export MMTESTS="sysbenchcpu"

# List of monitors
export RUN_MONITOR=yes
export MONITORS_ALWAYS=
export MONITORS_GZIP="proc-vmstat perf-time-stat mpstat turbostat"
export MONITORS_WITH_LATENCY="vmstat"
export MONITOR_PERF_EVENTS=cpu-migrations,context-switches
export MONITOR_UPDATE_FREQUENCY=10

# sysbench cpu
export SYSBENCHCPU_MAX_PRIME=25000
export SYSBENCHCPU_MIN_THREADS=1
export SYSBENCHCPU_MAX_THREADS=$((NUMCPUS*2))
export SYSBENCHCPU_ITERATIONS=7
