Skip to content
Snippets Groups Projects

Draft: Benchmarks that do profiling (igprof, valgrind)

Files

+ 37
0
 
profiling:sim:
 
extends: .rec_benchmark
 
stage: run
 
timeout: 24 hours
 
script:
 
- bash benchmarks/profiling/simulate.sh
 
 
profiling:valgrind:
 
extends: .rec_benchmark
 
stage: benchmarks1
 
needs: ["profiling:sim"]
 
timeout: 24 hours
 
script:
 
- bash benchmarks/profiling/valgrind.sh
 
 
profiling:igprofperf:
 
extends: .rec_benchmark
 
stage: benchmarks1
 
needs: ["profiling:sim"]
 
timeout: 24 hours
 
script:
 
- bash benchmarks/profiling/igprofperf.sh
 
 
profiling:igprofmem:
 
extends: .rec_benchmark
 
stage: benchmarks1
 
needs: ["profiling:sim"]
 
timeout: 24 hours
 
script:
 
- bash benchmarks/profiling/igprofmem.sh
 
 
profiling:results:
 
extends: .rec_benchmark
 
stage: collect
 
needs: ["profiling:valgrind","profiling:igprofperf","profiling:igprofmem"]
 
script:
 
- ls -lrth results/profiling/
Loading