Skip to content
Snippets Groups Projects
Commit 481e89db authored by Chris Harris's avatar Chris Harris
Browse files

Remove use of VTK_USE_MPI from vtkVPICReader

The #ifdef are unecessary as the TotalRank is used as a guard and
the code will not run in the serial case.

Change-Id: I9035dfd9738b7e35ae0ed2be4512c140f7314356
parent 8d408a33
No related branches found
No related tags found
No related merge requests found
......@@ -345,7 +345,6 @@ int vtkVPICReader::RequestInformation(
this->NumberOfGhostTuples *= this->GhostDimension[dim];
}
#ifdef VTK_USE_MPI
if (this->TotalRank>1)
{
// Set up the GridExchange for sharing ghost cells on this view
......@@ -359,7 +358,6 @@ int vtkVPICReader::RequestInformation(
(this->Rank, this->TotalRank, decomposition,
this->GhostDimension, this->ghostLevel0, this->ghostLevel1);
}
#endif
}
return 1;
}
......@@ -507,12 +505,10 @@ void vtkVPICReader::LoadVariableData(int var, int timeStep)
this->GhostDimension, timeStep, var, comp);
// Exchange the single component block retrieved from files to get ghosts
#ifdef VTK_USE_MPI
if (this->TotalRank>1)
{
this->exchanger->exchangeGrid(block);
}
#endif
// Load the ghost component block into ParaView array
if (this->VariableStruct[var] != TENSOR) {
......
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