From 83fb2f5cbb6ab106f8082ed9cefde41b63372015 Mon Sep 17 00:00:00 2001 From: Rene Milk <rene.milk@uni-muenster.de> Date: Sat, 8 Jan 2011 11:20:56 +0100 Subject: [PATCH] profiler: fix multirun output filename --- stuff/profiler.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stuff/profiler.hh b/stuff/profiler.hh index 695e6b0f4..d8534d53b 100644 --- a/stuff/profiler.hh +++ b/stuff/profiler.hh @@ -256,7 +256,7 @@ void Profiler::OutputMap(CollectiveCommunication& comm, InfoContainerMap& run_in std::string dir(Parameters().getParam("fem.io.datadir", std::string("."))); BOOST_FOREACH (typename InfoContainerMap::value_type el, run_infos_map) { OutputCommon( - comm, el.second, (boost::format("%s/prof_p%d_ref%s") % dir % comm.size() % el.first).str(), scale_factor); + comm, el.second, (boost::format("%s/prof_p%d_ref%s.csv") % dir % comm.size() % el.first).str(), scale_factor); } } -- GitLab