Ignore:
Timestamp:
Feb 2, 2012, 1:58:12 PM (14 years ago)
Author:
Julian Iseringhausen <isering@…>
Children:
32ff22
Parents:
01be70
Message:

Parallel performance update.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/smoother/smoother.cpp

    r01be70 r894a5f  
    1313
    1414#include "base/discretization.hpp"
    15 #include "base/timer.hpp"
    1615#include "comm/comm.hpp"
    1716#include "smoother/smoother.hpp"
     
    2221void Smoother::Run(Multigrid& sol, Multigrid& rhs, int steps)
    2322{
    24   Timer::Start("SmootherWithCommunication");
    25 
    2623  for (int i=0; i<steps; i++) {
    27 
    28     MG::GetComm()->CommToGhosts(sol());
    2924
    3025    if (sol().Global().BoundaryType() == LocallyRefined)
     
    3429
    3530  }
    36 
    37   Timer::Stop("SmootherWithCommunication");
    3831}
Note: See TracChangeset for help on using the changeset viewer.