From 0f4169139b98c7235782d57ba945e1b3567116b9 Mon Sep 17 00:00:00 2001 From: kanschat Date: Mon, 28 May 2007 19:15:48 +0000 Subject: [PATCH] more separate update values git-svn-id: https://svn.dealii.org/trunk@14725 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/benchmarks/dof_handler_timing.cc | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/tests/benchmarks/dof_handler_timing.cc b/tests/benchmarks/dof_handler_timing.cc index 08f7c4cb98..c112768e9d 100644 --- a/tests/benchmarks/dof_handler_timing.cc +++ b/tests/benchmarks/dof_handler_timing.cc @@ -84,12 +84,22 @@ void check () deallog << "Dofs " << dof.n_dofs() << std::endl; indices(dof); deallog << "Index" << std::endl; + fevalues(dof, update_q_points); + deallog << "qpoints" << std::endl; + fevalues(dof, update_JxW_values); + deallog << "JxW" << std::endl; fevalues(dof, update_q_points | update_JxW_values); deallog << "qpoints|JxW" << std::endl; + fevalues(dof, update_values); + deallog << "values" << std::endl; fevalues(dof, update_values | update_JxW_values); deallog << "values|JxW" << std::endl; - fevalues(dof, update_values | update_gradients | update_JxW_values); - deallog << "values|gradients|JxW" << std::endl; + fevalues(dof, update_values | update_gradients + | update_q_points | update_JxW_values); + deallog << "values|gradients|qpoints|JxW" << std::endl; + fevalues(dof, update_values | update_gradients | update_second_derivatives + | update_q_points | update_JxW_values); + deallog << "values|gradients|2nds|qpoints|JxW" << std::endl; deallog.pop(); } } -- 2.39.5