Changes in / [0cc818b:eb68ebb]
- Location:
- src/benchmark
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/benchmark/Makefile.am
r0cc818b reb68ebb 31 31 32 32 ctxswitch-coroutine$(EXEEXT): 33 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=50000000 CorCtxSwitch.c 34 @rm -f .result.log 35 @for number in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do \ 36 ./a.out | tee -a .result.log ; \ 33 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=10000000 CorCtxSwitch.c 34 @for number in 1 2 3 4 5 6 7 8 9 10; do \ 35 ./a.out ; \ 37 36 done 38 @./stat.py .result.log 39 @rm -f a.out .result.log 37 @rm -f ./a.out 40 38 41 39 ctxswitch-thread$(EXEEXT): 42 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=50000000 ThrdCtxSwitch.c 43 @rm -f .result.log 44 @for number in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do \ 45 ./a.out | tee -a .result.log ; \ 40 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=10000000 ThrdCtxSwitch.c 41 @for number in 1 2 3 4 5 6 7 8 9 10; do \ 42 ./a.out ; \ 46 43 done 47 @./stat.py .result.log 48 @rm -f a.out .result.log 44 @rm -f ./a.out 49 45 50 46 sched-int$(EXEEXT): 51 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=50000000 SchedInt.c 52 @rm -f .result.log 53 @for number in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do \ 54 ./a.out | tee -a .result.log ; \ 47 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=10000000 SchedInt.c 48 @for number in 1 2 3 4 5 6 7 8 9 10; do \ 49 ./a.out ; \ 55 50 done 56 @./stat.py .result.log 57 @rm -f a.out .result.log 51 @rm -f ./a.out 58 52 59 53 monitor$(EXEEXT): 60 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=50000000 Monitor.c 61 @rm -f .result.log 62 @for number in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do \ 63 ./a.out | tee -a .result.log ; \ 54 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=10000000 Monitor.c 55 @for number in 1 2 3 4 5 6 7 8 9 10; do \ 56 ./a.out ; \ 64 57 done 65 @./stat.py .result.log 66 @rm -f a.out .result.log 58 @rm -f ./a.out 67 59 68 60 csv-data$(EXEEXT): 69 @${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -quiet -DN= 50000000 csv-data.c61 @${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -quiet -DN=10000000 csv-data.c 70 62 @./a.out 71 63 @rm -f ./a.out -
src/benchmark/Makefile.in
r0cc818b reb68ebb 581 581 582 582 ctxswitch-coroutine$(EXEEXT): 583 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=50000000 CorCtxSwitch.c 584 @rm -f .result.log 585 @for number in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do \ 586 ./a.out | tee -a .result.log ; \ 583 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=10000000 CorCtxSwitch.c 584 @for number in 1 2 3 4 5 6 7 8 9 10; do \ 585 ./a.out ; \ 587 586 done 588 @./stat.py .result.log 589 @rm -f a.out .result.log 587 @rm -f ./a.out 590 588 591 589 ctxswitch-thread$(EXEEXT): 592 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=50000000 ThrdCtxSwitch.c 593 @rm -f .result.log 594 @for number in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do \ 595 ./a.out | tee -a .result.log ; \ 590 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=10000000 ThrdCtxSwitch.c 591 @for number in 1 2 3 4 5 6 7 8 9 10; do \ 592 ./a.out ; \ 596 593 done 597 @./stat.py .result.log 598 @rm -f a.out .result.log 594 @rm -f ./a.out 599 595 600 596 sched-int$(EXEEXT): 601 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=50000000 SchedInt.c 602 @rm -f .result.log 603 @for number in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do \ 604 ./a.out | tee -a .result.log ; \ 597 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=10000000 SchedInt.c 598 @for number in 1 2 3 4 5 6 7 8 9 10; do \ 599 ./a.out ; \ 605 600 done 606 @./stat.py .result.log 607 @rm -f a.out .result.log 601 @rm -f ./a.out 608 602 609 603 monitor$(EXEEXT): 610 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=50000000 Monitor.c 611 @rm -f .result.log 612 @for number in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do \ 613 ./a.out | tee -a .result.log ; \ 604 ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=10000000 Monitor.c 605 @for number in 1 2 3 4 5 6 7 8 9 10; do \ 606 ./a.out ; \ 614 607 done 615 @./stat.py .result.log 616 @rm -f a.out .result.log 608 @rm -f ./a.out 617 609 618 610 csv-data$(EXEEXT): 619 @${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -quiet -DN= 50000000 csv-data.c611 @${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -quiet -DN=10000000 csv-data.c 620 612 @./a.out 621 613 @rm -f ./a.out
Note: See TracChangeset
for help on using the changeset viewer.