mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-06-22 16:28:30 +00:00
changing blocking-recive to non-blocking (in boundaryProcessor) to improve MPI run
This commit is contained in:
@ -106,7 +106,7 @@ bool pFlow::MPI::processorBoundarySphereInteraction<cFM, gMM>::sphereSphereInter
|
||||
return true;
|
||||
}
|
||||
|
||||
if(iter % 1000 == 0u)
|
||||
if(iter % 100 == 0u)
|
||||
{
|
||||
pOutput<<"inter "<< inter_.totalTime()<<endl;
|
||||
pOutput<<"send "<< send_.totalTime()<<endl<<endl;;
|
||||
@ -144,7 +144,7 @@ bool pFlow::MPI::processorBoundarySphereInteraction<cFM, gMM>::sphereSphereInter
|
||||
return true;
|
||||
}
|
||||
|
||||
if(iter % 1000 == 0u)
|
||||
if(iter % 100 == 0u)
|
||||
{
|
||||
pOutput<<"recive "<< recv_.totalTime()<<endl;
|
||||
pOutput<<"add "<< add_.totalTime()<<endl<<endl;
|
||||
|
Reference in New Issue
Block a user