Skip to content
Snippets Groups Projects
Commit 8b512fc6 authored by Markus Blatt's avatar Markus Blatt
Browse files

Activate buffered indicestest.

[[Imported from SVN: r1372]]
parent 1fddd84f
No related tags found
No related merge requests found
......@@ -137,6 +137,8 @@ void testIndices(MPI_Comm comm)
Array* globalArray;
int index=0;
std::cout<<rank<<": Nx="<<Nx<<" Ny="<<Ny<<" size="<<size<<std::endl;
for(int j=0; j<Ny; j++)
for(int i=start; i<end; i++) {
bool isPublic = (i<=start+1)||(i>=end-2);
......@@ -327,6 +329,10 @@ void testIndicesBuffered(MPI_Comm comm)
RemoteIndices accuIndices(distIndexSet, globalIndexSet, comm);
accuIndices.rebuild<true>();
std::cout<<"dist "<<rank<<": "<<distIndexSet<<std::endl;
std::cout<<"global "<<rank<<": "<<globalIndexSet<<std::endl;
std::cout << accuIndices<<std::endl;
std::cout <<" end remote indices"<<std::endl;
RemoteIndices overlapIndices(distIndexSet, distIndexSet, comm);
overlapIndices.rebuild<false>();
......@@ -341,7 +347,7 @@ void testIndicesBuffered(MPI_Comm comm)
overlapInterface.build(overlapIndices, Dune::EnumItem<GridFlags,owner>(),
Dune::EnumItem<GridFlags,overlap>());
overlapInterface.print();
//accuInterface.print();
accuInterface.print();
//accuInterface.print();
......@@ -627,6 +633,10 @@ void testRedistributeIndicesBuffered(MPI_Comm comm)
redistribute.backward<ArrayGatherScatter>(array, redistributedArray);
std::cout<<rank<<": final array: "<<array<<std::endl;
redistribute.forward<ArrayGatherScatter>(array, redistributedArray);
std::cout<<rank<<": final array with overlap communicated: "<<array<<std::endl;
}
......@@ -686,7 +696,7 @@ int main(int argc, char **argv)
#endif
// testIndices(comm);
//testIndicesBuffered(comm);
testIndicesBuffered(comm);
if(rank==0)
std::cout<<std::endl<<"Redistributing bla!"<<std::endl<<std::endl;
......
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