Skip to content
Snippets Groups Projects
Commit 8f92a3ec authored by Benjamin Lindner2's avatar Benjamin Lindner2
Browse files

fixed all_to_all, added last exchange

parent 90e38cd9
No related branches found
No related tags found
No related merge requests found
......@@ -426,6 +426,16 @@ void DataStagerByAtom::stage_firstpartition() {
}
}
if (framesbuffer[rank].size()!=0) {
timer_.start("st:distribute");
distribute_coordinates(p_coordinates_buffer,framesbuffer,rank);
timer_.stop("st:distribute");
for(size_t i = 0; i < NNPP; ++i)
{
framesbuffer[i].clear();
}
}
timer_.start("st:wait");
partitioncomm_.barrier();
timer_.stop("st:wait");
......
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