Skip to content
GitLab
Explore
Sign in
Register
This is an archived project. Repository and other project resources are read-only.
Commits on Source (1)
COMP: scatter v.s. broadcast
· 3ff85555
mattijs
authored
Dec 18, 2024
3ff85555
Hide whitespace changes
Inline
Side-by-side
meshLibrary/utilities/helperFunctions/helperFunctionsFrontalMarking.C
View file @
3ff85555
...
...
@@ -527,8 +527,8 @@ Foam::label Foam::Module::help::groupMarking
}
// broadcast group labels from the master to other processors
Pstream
::
scatter
(
nGroups
);
Pstream
::
scatter
(
allGroupsNewLabel
);
Pstream
::
broadcast
(
nGroups
);
Pstream
::
broadcast
(
allGroupsNewLabel
);
// assign correct group labels
forAll
(
globalGroupLabel
,
groupI
)
...
...