From: Guido Kanschat Date: Thu, 31 May 2007 19:49:19 +0000 (+0000) Subject: scale times and add default target X-Git-Tag: v8.0.0~10283 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bfcae2a634a60cef1e4e1a148e50b142f76d2d23;p=dealii.git scale times and add default target git-svn-id: https://svn.dealii.org/trunk@14740 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/benchmarks/Makefile b/tests/benchmarks/Makefile index cee896d02b..f091b3202b 100644 --- a/tests/benchmarks/Makefile +++ b/tests/benchmarks/Makefile @@ -58,6 +58,9 @@ endif @echo Linking > $*/status @$(CXX) $(LDFLAGS) -o $@ $^ $(LIBS) +%/output : %/exe + @echo =====running======= $< + @$< ############################################################ # After all these general rules, here is the target to be diff --git a/tests/benchmarks/dof_handler_timing_01.cc b/tests/benchmarks/dof_handler_timing_01.cc index 87364c19e6..ba4996826f 100644 --- a/tests/benchmarks/dof_handler_timing_01.cc +++ b/tests/benchmarks/dof_handler_timing_01.cc @@ -40,7 +40,7 @@ void check_dofs(DOF& dof, unsigned int repeat) FE_Q fe(i); for (unsigned int i=0;i dof(tr); - check_dofs(dof, (local ? 10 : 1)); + check_dofs(dof, (local ? 100 : 10)); deallog.pop(); deallog.push("MGDoF"); MGDoFHandler mgdof(tr); - check_dofs(mgdof, (local ? 10 : 1)); + check_dofs(mgdof, (local ? 100 : 10)); deallog.pop(); } @@ -102,7 +102,7 @@ int main() check<3>(true); deallog.pop(); deallog.pop(); - deallog.push("global"); + deallog.push("global"); deallog.push("2d"); check<2>(false); deallog.pop();