Changes in benchmark/Makefile.in [e764ee1:d9f2874]
- File:
-
- 1 edited
-
benchmark/Makefile.in (modified) (10 diffs)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/Makefile.in
re764ee1 rd9f2874 371 371 372 372 # applies to both programs 373 AM_CFLAGS = -O2 -Wall -Wextra - I$(srcdir) -lrt -pthread # -Werror373 AM_CFLAGS = -O2 -Wall -Wextra -Werror -I$(srcdir) -lrt -pthread 374 374 AM_CFAFLAGS = -quiet -nodebug -in-tree 375 375 AM_UPPFLAGS = -quiet -nodebug -multi -std=c++14 … … 380 380 BENCH_V_JAVAC = $(__bench_v_JAVAC_$(__quiet)) 381 381 BENCH_V_UPP = $(__bench_v_UPP_$(__quiet)) 382 BENCH_V_QTHREAD = $(__bench_v_QTHREAD_$(__quiet))383 382 __quiet = verbose 384 383 __bench_v_CC_quiet = @ … … 394 393 __bench_v_JAVAC_verbose = $(AM_V_JAVAC) 395 394 __bench_v_UPP_verbose = $(AM_V_UPP) 396 __bench_v_QTHREAD_verbose = $(AM_V_CC)397 395 TOOLSDIR = ${abs_top_builddir}/tools/ 398 396 REPEAT = ${abs_top_builddir}/tools/repeat 399 397 STATS = ${abs_top_srcdir}/tools/stat.py 400 repeats = 3 # 30398 repeats = 30 401 399 skipcompile = no 402 400 TIME_FORMAT = "%E" … … 404 402 dummy_SOURCES = dummyC.c dummyCXX.cpp 405 403 FIX_NEW_LINES = cat $@ | tr "\n" "\t" | sed -r 's/\t,/,/' | tr "\t" "\n" > $@ 406 CTXSWITCH_DEPEND = loop.run function.run fetch_add.run ttst_lock.run\404 CTXSWITCH_DEPEND = loop.run function.run fetch_add.run \ 407 405 tls-fetch_add.run ctxswitch-pthread.run \ 408 ctxswitch-cfa_generator.run ctxswitch-cfa_coroutine.run \ 409 ctxswitch-cfa_thread.run ctxswitch-cfa_thread2.run \ 410 ctxswitch-upp_coroutine.run ctxswitch-upp_thread.run \ 411 ctxswitch-goroutine.run ctxswitch-java_thread.run \ 412 ctxswitch-qthreads.run $(am__append_1) 406 ctxswitch-cfa_coroutine.run ctxswitch-cfa_thread.run \ 407 ctxswitch-cfa_thread2.run ctxswitch-upp_coroutine.run \ 408 ctxswitch-upp_thread.run ctxswitch-goroutine.run \ 409 ctxswitch-java_thread.run $(am__append_1) 413 410 testdir = $(top_srcdir)/tests 414 411 all: all-am … … 787 784 788 785 ctxswitch.csv: 789 @echo "generator,coroutine,thread" > $@ 790 @+make ctxswitch-cfa_generator.runquiet >> $@ && echo -n ',' >> $@ 786 @echo "coroutine,thread" > $@ 791 787 @+make ctxswitch-cfa_coroutine.runquiet >> $@ && echo -n ',' >> $@ 792 788 @+make ctxswitch-cfa_thread.runquiet >> $@ … … 816 812 $(BENCH_V_CC)$(COMPILE) -DBENCH_N=500000000 $(srcdir)/fetch_add.c 817 813 818 ttst_lock$(EXEEXT):819 $(BENCH_V_CC)$(COMPILE) -DBENCH_N=500000000 $(srcdir)/ttst_lock.c820 821 814 tls-fetch_add$(EXEEXT): 822 815 $(BENCH_V_CC)$(COMPILE) -DBENCH_N=500000000 $(srcdir)/tls-fetch_add.c … … 832 825 ctxswitch-pthread$(EXEEXT): 833 826 $(BENCH_V_CC)$(COMPILE) -DBENCH_N=50000000 $(srcdir)/ctxswitch/pthreads.c 834 835 ctxswitch-cfa_generator$(EXEEXT):836 $(BENCH_V_CFA)$(CFACOMPILE) -DBENCH_N=50000000 $(srcdir)/ctxswitch/cfa_gen.cfa837 827 838 828 ctxswitch-cfa_coroutine$(EXEEXT): … … 859 849 @echo "java JavaThread" >> a.out 860 850 @chmod a+x a.out 861 862 ctxswitch-qthreads$(EXEEXT):863 $(BENCH_V_QTHREADS)$(COMPILE) -DBENCH_N=50000000 -I/u/pabuhr/software/qthreads/include -L/u/pabuhr/software/qthreads/lib -Xlinker -R/u/pabuhr/software/qthreads/lib $(srcdir)/ctxswitch/qthreads.c -lqthread864 851 865 852 mutex$(EXEEXT) :\ … … 950 937 creation-upp_thread.run \ 951 938 creation-goroutine.run \ 952 creation-java_thread.run \ 953 creation-qthreads.run 939 creation-java_thread.run 954 940 955 941 creation-cfa_coroutine$(EXEEXT): … … 979 965 @echo "java JavaThread" >> a.out 980 966 @chmod a+x a.out 981 982 creation-qthreads$(EXEEXT):983 $(BENCH_V_QTHREADS)$(COMPILE) -DBENCH_N=50000000 -I/u/pabuhr/software/qthreads/include -L/u/pabuhr/software/qthreads/lib -Xlinker -R/u/pabuhr/software/qthreads/lib $(srcdir)/ctxswitch/qthreads.c -lqthread984 967 985 968 compile$(EXEEXT) :\
Note:
See TracChangeset
for help on using the changeset viewer.