Changes in / [46b11e2:bd5b443]
- Files:
-
- 3 edited
-
Jenkinsfile (modified) (1 diff)
-
benchmark/Makefile.am (modified) (4 diffs)
-
benchmark/Makefile.in (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r46b11e2 rbd5b443 215 215 216 216 //Then publish the results 217 do_plot(Settings.RunBenchmark && Settings.Publish, 'compile' , groupCompile , false, 'Compilation')218 do_plot(Settings.RunBenchmark && Settings.Publish, 'compile.diff' , groupCompile , true , 'Compilation (relative)')219 do_plot(Settings.RunBenchmark && Settings.Publish, 'ctxswitch' , groupConcurrency, false, 'Context Switching')220 do_plot(Settings.RunBenchmark && Settings.Publish, 'ctxswitch.diff' , groupConcurrency, true , 'Context Switching (relative)')221 do_plot(Settings.RunBenchmark && Settings.Publish, 'mutex' , groupConcurrency, false, 'Mutual Exclusion')222 do_plot(Settings.RunBenchmark && Settings.Publish, 'mutex.diff' , groupConcurrency, true , 'Mutual Exclusion (relative)')223 do_plot(Settings.RunBenchmark && Settings.Publish, 's cheduling', groupConcurrency, false, 'Internal and External Scheduling')224 do_plot(Settings.RunBenchmark && Settings.Publish, 's cheduling.diff', groupConcurrency, true , 'Internal and External Scheduling (relative)')217 do_plot(Settings.RunBenchmark && Settings.Publish, 'compile' , groupCompile , false, 'Compilation') 218 do_plot(Settings.RunBenchmark && Settings.Publish, 'compile.diff' , groupCompile , true , 'Compilation (relative)') 219 do_plot(Settings.RunBenchmark && Settings.Publish, 'ctxswitch' , groupConcurrency, false, 'Context Switching') 220 do_plot(Settings.RunBenchmark && Settings.Publish, 'ctxswitch.diff', groupConcurrency, true , 'Context Switching (relative)') 221 do_plot(Settings.RunBenchmark && Settings.Publish, 'mutex' , groupConcurrency, false, 'Mutual Exclusion') 222 do_plot(Settings.RunBenchmark && Settings.Publish, 'mutex.diff' , groupConcurrency, true , 'Mutual Exclusion (relative)') 223 do_plot(Settings.RunBenchmark && Settings.Publish, 'signal' , groupConcurrency, false, 'Internal and External Scheduling') 224 do_plot(Settings.RunBenchmark && Settings.Publish, 'signal.diff' , groupConcurrency, true , 'Internal and External Scheduling (relative)') 225 225 } 226 226 } -
benchmark/Makefile.am
r46b11e2 rbd5b443 144 144 145 145 cleancsv: 146 rm -f compile.csv basic.csv ctxswitch.csv mutex.csv sched uling.csv146 rm -f compile.csv basic.csv ctxswitch.csv mutex.csv schedint.csv 147 147 148 148 jenkins$(EXEEXT): cleancsv … … 155 155 +make mutex.csv 156 156 -+make mutex.diff.csv 157 +make sched uling.csv158 -+make sched uling.diff.csv157 +make schedint.csv 158 -+make schedint.diff.csv 159 159 @DOifskipcompile@ 160 160 cat compile.csv … … 165 165 cat mutex.csv 166 166 -cat mutex.diff.csv 167 cat sched uling.csv168 -cat sched uling.diff.csv167 cat schedint.csv 168 -cat schedint.diff.csv 169 169 170 170 compile.csv: … … 196 196 $(srcdir)/fixcsv.sh $@ 197 197 198 sched uling.csv:198 schedint.csv: 199 199 echo "building $@" 200 200 echo "schedint-1,schedint-2,schedext-1,schedext-2" > $@ -
benchmark/Makefile.in
r46b11e2 rbd5b443 823 823 824 824 cleancsv: 825 rm -f compile.csv basic.csv ctxswitch.csv mutex.csv sched uling.csv825 rm -f compile.csv basic.csv ctxswitch.csv mutex.csv schedint.csv 826 826 827 827 jenkins$(EXEEXT): cleancsv … … 834 834 +make mutex.csv 835 835 -+make mutex.diff.csv 836 +make sched uling.csv837 -+make sched uling.diff.csv836 +make schedint.csv 837 -+make schedint.diff.csv 838 838 @DOifskipcompile@ 839 839 cat compile.csv … … 844 844 cat mutex.csv 845 845 -cat mutex.diff.csv 846 cat sched uling.csv847 -cat sched uling.diff.csv846 cat schedint.csv 847 -cat schedint.diff.csv 848 848 849 849 compile.csv: … … 875 875 $(srcdir)/fixcsv.sh $@ 876 876 877 sched uling.csv:877 schedint.csv: 878 878 echo "building $@" 879 879 echo "schedint-1,schedint-2,schedext-1,schedext-2" > $@
Note:
See TracChangeset
for help on using the changeset viewer.