mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: mpi: use per-application communicator.
This commit is contained in:
@ -1392,9 +1392,11 @@ void Foam::distributedTriSurfaceMesh::surfaceSide
|
||||
map.subMap(),
|
||||
map.subHasFlip(),
|
||||
volType,
|
||||
zero,
|
||||
volumeCombineOp(),
|
||||
noOp(), // no flipping
|
||||
zero
|
||||
UPstream::msgType(),
|
||||
map.comm()
|
||||
);
|
||||
|
||||
if (debug)
|
||||
@ -3193,9 +3195,11 @@ void Foam::distributedTriSurfaceMesh::findNearest
|
||||
map1.subMap(),
|
||||
map1.subHasFlip(),
|
||||
nearestInfo,
|
||||
nearestZero,
|
||||
nearestEqOp(),
|
||||
noOp(), // no flipping
|
||||
nearestZero
|
||||
UPstream::msgType(),
|
||||
map1.comm()
|
||||
);
|
||||
|
||||
|
||||
@ -3351,9 +3355,11 @@ void Foam::distributedTriSurfaceMesh::findNearest
|
||||
map2.subMap(),
|
||||
map2.subHasFlip(),
|
||||
localBest,
|
||||
nearestZero,
|
||||
nearestEqOp(),
|
||||
noOp(), // no flipping
|
||||
nearestZero
|
||||
UPstream::msgType(),
|
||||
map2.comm()
|
||||
);
|
||||
|
||||
// Combine with nearestInfo
|
||||
@ -4183,9 +4189,11 @@ void Foam::distributedTriSurfaceMesh::getVolumeType
|
||||
map.subMap(),
|
||||
map.subHasFlip(),
|
||||
volType,
|
||||
zero,
|
||||
volumeCombineOp(),
|
||||
noOp(), // no flipping
|
||||
zero
|
||||
UPstream::msgType(),
|
||||
map.comm()
|
||||
);
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user