Skip to content
Snippets Groups Projects
Commit b3252eea authored by João Isler's avatar João Isler
Browse files

DoOdeProjection timers

parent 53c5e522
No related branches found
No related tags found
No related merge requests found
......@@ -198,8 +198,11 @@ namespace Nektar
m_fields[i]->BwdTrans(inarray[i], inpnts[i]);
}
timer.Start();
DoOdeProjection(inpnts, inpnts, m_bndEvaluateTime);
timer.Stop();
timer.AccumulateRegion("CompressibleFlowSystem::DoOdeProjection", 1);
timer.Start();
DoOdeRhsCoeff(inpnts, out, m_bndEvaluateTime);
timer.Stop();
......@@ -455,7 +458,11 @@ namespace Nektar
intmp[i] = Array<OneD, NekDouble>(nphspnt,0.0);
}
timer.Start();
DoOdeProjection(m_solutionPhys,intmp,m_bndEvaluateTime);
timer.Stop();
timer.AccumulateRegion("CompressibleFlowSystem::DoOdeProjection", 1);
timer.Start();
m_preconCfs->BuildPreconCfs(m_fields, intmp, m_bndEvaluateTime,
......
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