Ignore:
Timestamp:
Jul 31, 2019, 3:33:44 PM (5 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
0d92e5c
Parents:
1d76f8a4
Message:

Jenkins now also computes various speed-up graphs for performance monitoring

File:
1 edited

Legend:

Unmodified
Added
Removed
  • benchmark/Makefile.am

    r1d76f8a4 rc6f1f3e  
    5151STATS    = ${abs_top_srcdir}/tools/stat.py
    5252repeats  = 3 # 30
     53arch     = x64
    5354skipcompile = no
    5455TIME_FORMAT = "%E"
     
    99100@DOifskipcompile@
    100101        @+make compile.csv
     102        @-+make compile.diff.csv
    101103@DOendif@
    102104        @+make ctxswitch.csv
     105        @-+make ctxswitch.diff.csv
    103106        @+make mutex.csv
     107        @-+make mutex.diff.csv
    104108        @+make signal.csv
     109        @-+make signal.diff.csv
    105110@DOifskipcompile@
    106         @cat compile.csv
     111        cat compile.csv
     112        -cat compile.diff.csv
    107113@DOendif@
    108         @cat ctxswitch.csv
    109         @cat mutex.csv
    110         @cat signal.csv
     114        cat ctxswitch.csv
     115        -cat ctxswitch.diff.csv
     116        cat mutex.csv
     117        -cat mutex.diff.csv
     118        cat signal.csv
     119        -cat signal.diff.csv
    111120
    112121compile.csv:
     
    142151        @+make waitfor-cfa2.runquiet >> $@
    143152        @$(srcdir)/fixcsv.sh $@
     153
     154%.diff.csv: %.csv
     155        @test -e $(srcdir)/baselines/$(arch)/$< || (echo "Error : Missing baseline for ${<}" && false)
     156        @$(srcdir)/baselines/calc.py $(srcdir)/baselines/$(arch)/$(<) $(<) > $@
     157
    144158
    145159## =========================================================================================================
Note: See TracChangeset for help on using the changeset viewer.