Skip to content
Snippets Groups Projects
Commit 83fb2f5c authored by René Fritze's avatar René Fritze
Browse files

profiler: fix multirun output filename

parent 87c8e806
No related branches found
No related tags found
Loading
......@@ -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);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment