Changeset 05f4b85


Ignore:
Timestamp:
Feb 1, 2018, 9:26:34 AM (7 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
cc344be
Parents:
b2b44d8
Message:

Jenkins benchmark can now skipcompilation on demand and pin programs to core 1

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • configure

    rb2b44d8 r05f4b85  
    678678CFA_INCDIR
    679679CFA_PREFIX
     680DOendif
     681DOifskipcompile
    680682BUILD_CONCURRENCY_FALSE
    681683BUILD_CONCURRENCY_TRUE
     
    33423344
    33433345
     3346DOifskipcompile='ifeq ($(skipcompile),yes)
     3347else'
     3348
     3349
     3350
     3351DOendif='endif'
     3352
     3353
     3354
    33443355if test "x$prefix" = "xNONE"; then
    33453356        cfa_prefix=${ac_default_prefix}
  • configure.ac

    rb2b44d8 r05f4b85  
    130130AM_CONDITIONAL([BUILD_NO_LIB], [test "x$build_release$build_debug" = "xnono"])
    131131AM_CONDITIONAL([BUILD_CONCURRENCY], [test "x$build_threading" = "xyes"])
     132
     133DOifskipcompile='ifeq ($(skipcompile),yes)
     134else'
     135AC_SUBST([DOifskipcompile])
     136AM_SUBST_NOTMAKE([DOifskipcompile])
     137
     138DOendif='endif'
     139AC_SUBST([DOendif])
     140AM_SUBST_NOTMAKE([DOendif])
    132141
    133142if test "x$prefix" = "xNONE"; then
  • src/benchmark/Makefile.am

    rb2b44d8 r05f4b85  
    2323STATS    = ${TOOLSDIR}stat.py
    2424repeats  = 30
     25skipcompile = no
    2526TIME_FORMAT = "%E"
    2627PRINT_FORMAT = %20s: #Comments needed for spacing
     
    4344%.runquiet :
    4445        @+make $(basename $@)
    45         @./a.out
     46        @taskset -c 1 ./a.out
    4647        @rm -f a.out
    4748
     
    5960        @echo -e '\t"githash": "'${githash}'",'
    6061        @echo -e '\t"arch": "'   ${arch}   '",'
     62@DOifskipcompile@
    6163        @echo -e '\t"compile": {'
    6264        @+make compile TIME_FORMAT='%e,' PRINT_FORMAT='\t\t\"%s\" :'
    6365        @echo -e '\t\t"dummy" : {}'
    6466        @echo -e '\t},'
     67@DOendif@
    6568        @echo -e '\t"ctxswitch": {'
    6669        @echo -en '\t\t"coroutine":'
  • src/benchmark/Makefile.in

    rb2b44d8 r05f4b85  
    253253STATS = ${TOOLSDIR}stat.py
    254254repeats = 30
     255skipcompile = no
    255256TIME_FORMAT = "%E"
    256257PRINT_FORMAT = %20s: #Comments needed for spacing
     
    459460%.runquiet :
    460461        @+make $(basename $@)
    461         @./a.out
     462        @taskset -c 1 ./a.out
    462463        @rm -f a.out
    463464
     
    473474        @echo -e '\t"githash": "'${githash}'",'
    474475        @echo -e '\t"arch": "'   ${arch}   '",'
     476@DOifskipcompile@
    475477        @echo -e '\t"compile": {'
    476478        @+make compile TIME_FORMAT='%e,' PRINT_FORMAT='\t\t\"%s\" :'
    477479        @echo -e '\t\t"dummy" : {}'
    478480        @echo -e '\t},'
     481@DOendif@
    479482        @echo -e '\t"ctxswitch": {'
    480483        @echo -en '\t\t"coroutine":'
Note: See TracChangeset for help on using the changeset viewer.