File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
basicProgrammingTutorials/basicParallelComputing/app Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -68,8 +68,8 @@ int main(int argc, char *argv[])
6868 // Spreading a value across all processors is done using a scatter operation.
6969 // The Pstream::blocking makes sure all processors are synchronised at this
7070 // line of the code and thus should use the same value.
71- Pstream ::scatter (meshVolume , Pstream ::blocking );
72- Pout << "Mesh volume on this processor is now " << meshVolume << endl ;
71+ // Pstream::scatter(meshVolume, Pstream::blocking);
72+ // Pout << "Mesh volume on this processor is now " << meshVolume << endl;
7373
7474 // It is often useful to check the distribution of something across all
7575 // processors. This may be done using a list, with each element of which
You can’t perform that action at this time.
0 commit comments