aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Andres Erbsen <andreser@google.com>2017-11-03 15:52:40 +0000
committerGravatar Andres Erbsen <andreser@google.com>2017-11-03 15:53:23 +0000
commit7e05a730a4d3ee521f9103bb6fdbdd2d89ebf287 (patch)
treef4a4a34d364b59afcf50929cd86adb2ccba3b582 /Makefile
parent90e263a5dca7ea4d73e83b2ee03ecd8e79170531 (diff)
run some benchmarks
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 75f97acaf..111a8ca9e 100644
--- a/Makefile
+++ b/Makefile
@@ -302,25 +302,25 @@ $(GENERATED_GMPXX) : %/gmpxx : %/compilerxx.sh src/Specific/Framework/bench/gmpx
sh $*/compilerxx.sh src/Specific/Framework/bench/gmpxx.cpp -lgmp -lgmpxx -o $@
$(GENERATED_GMPXX_MEASUREMENTS) : %/gmpxx.log : %/gmpxx
- $(STDTIME) $< > $@
+ $(STDTIME) $< 2>&1 | tee $@
$(GENERATED_GMPVAR) : %/gmpvar : %/compiler.sh src/Specific/Framework/bench/gmpvar.c
sh $*/compiler.sh src/Specific/Framework/bench/gmpvar.c -lgmp -o $@
$(GENERATED_GMPVAR_MEASUREMENTS) : %/gmpvar.log : %/gmpvar
- $(STDTIME) $< > $@
+ $(STDTIME) $< 2>&1 | tee $@
$(GENERATED_GMPSEC) : %/gmpsec : %/compiler.sh src/Specific/Framework/bench/gmpsec.c
sh $*/compiler.sh src/Specific/Framework/bench/gmpsec.c -lgmp -o $@
$(GENERATED_GMPSEC_MEASUREMENTS) : %/gmpsec.log : %/gmpsec
- $(STDTIME) $< > $@
+ $(STDTIME) $< 2>&1 | tee $@
$(GENERATED_FIBE) : %/fibe : %/compiler.sh src/Specific/Framework/bench/fibe.c %/feadd.c %/femul.c %/fesquare.c %/fesub.c liblow/liblow.h liblow/cmovznz.c
sh $*/compiler.sh -I liblow/ liblow/cmovznz.c src/Specific/Framework/bench/fibe.c -I $*/ -o $@
$(GENERATED_FIBE_MEASUREMENTS) : %/fibe.log : %/fibe
- $(STDTIME) $< > $@
+ $(STDTIME) $< 2>&1 | tee $@
.PHONY: generated-py-bench
generated-py-bench: $(GENERATED_PY_MEASUREMENTS)