ENH: more consistent use of broadcast, combineReduce etc.
- broadcast : (replaces scatter)
- combineReduce == combineGather + broadcast
- listCombineReduce == listCombineGather + broadcast
- mapCombineReduce == mapCombineGather + broadcast
- allGatherList == gatherList + scatterList
Before settling on a more consistent naming convention,
some intermediate namings were used in OpenFOAM-v2206:
- combineReduce (2206: combineAllGather)
- listCombineReduce (2206: listCombineAllGather)
- mapCombineReduce (2206: mapCombineAllGather)
This commit is contained in:
committed by
Andrew Heather
parent
b9c15b8585
commit
473e14418a
@ -178,11 +178,7 @@ void Foam::patchSeedSet::calcSamples
|
||||
// 2. Reduce on master. Select nearest processor.
|
||||
|
||||
// Find nearest - globally consistent
|
||||
Pstream::listCombineAllGather
|
||||
(
|
||||
nearest,
|
||||
mappedPatchBase::nearestEqOp()
|
||||
);
|
||||
Pstream::listCombineReduce(nearest, mappedPatchBase::nearestEqOp());
|
||||
|
||||
// 3. Pick up my local faces that have won
|
||||
|
||||
|
||||
Reference in New Issue
Block a user