Add performance regression testsuite
Compare changes
- Sebastian Ohlmann authored
@@ -11,7 +11,7 @@ else
@@ -23,7 +23,7 @@ all: testsuite timings.yaml combinations.yaml
@@ -42,7 +42,7 @@ combinations.yaml: timings.yaml
The performance regression testsuite is thought to run different tests (at the moment only unit tests) for a lot of different input files to test the performance of the code for various parts of the parameter space.
It can be called as make check-performance
from the build dir, or also
using the oct-run_performance_testsuite.sh
script from the installed
bin directory (no parameters needed).
Some parameters can be used to tweak the behavior (when setting them as environment variables):
TASKS/
NPROCSExample: make check-performance SLURM=true NODES=2 TASKS=64
If running each test in parallel, one can use make check-performance SLURM=true NODES=2 TASKS=64 NPROCS=2
.
When using the performance regression testsuite on slurm system inside a sbatch job, one can use TESTS=batch_ops SLURM=true SALLOC=false NODES=1 TASKS=40 NPROCS=1 $OCTOPUS_HOME/bin/oct-run_performance_testsuite.sh
(in this example, only the batch_ops tests are run).
Also, parameters of the tests can be overridden by specifying OPRT_parameter_name
environment variables with valid YAML code defining the corresponding parameter value array as in the combinations.yaml files.
Add performance regression testsuite