Ignore:
Timestamp:
Nov 22, 2011, 9:22:10 PM (14 years ago)
Author:
Julian Iseringhausen <isering@…>
Children:
facba0
Parents:
66f24d
Message:

Major vmg update.

git-svn-id: https://svn.version.fz-juelich.de/scafacos/trunk@1136 5161e1c8-67bf-11de-9fd5-51895aff932f

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/smoother/smoother.cpp

    r66f24d rdfed1c  
    1313
    1414#include "base/discretization.hpp"
     15#include "base/timer.hpp"
    1516#include "comm/comm.hpp"
    1617#include "smoother/smoother.hpp"
     
    2122void Smoother::Run(Multigrid& sol, Multigrid& rhs, int steps)
    2223{
     24  Timer::Start("SmootherWithCommunication");
     25
    2326  for (int i=0; i<steps; i++) {
     27
    2428    MG::GetComm()->CommToGhosts(sol());
    2529
     
    2832
    2933    this->Compute(sol(), rhs());
     34
    3035  }
     36
     37  Timer::Stop("SmootherWithCommunication");
    3138}
Note: See TracChangeset for help on using the changeset viewer.