|
[Sponsors] |
October 22, 2013, 09:40 |
Gather/scatter in boundary code
|
#1 |
Senior Member
Niels Gjoel Jacobsen
Join Date: Mar 2009
Location: Copenhagen, Denmark
Posts: 1,902
Rep Power: 37 |
Dear all,
I have a implementation issue, which gives me a lot of problems. I need to perform a bit of manual exchange of parallel data in my code, because of two boundaries, which are physically connected, but they are not necessarily placed on the same processor. For that I am using the gatherList and scatterList code, and the following is a dummy example of it: Code:
List<scalarField> test(Pstream::nProcs()); test[Pstream::myProcNo()].setSize(100, Pstream::myProcNo()); Pstream::gatherList<scalarField>(test); Pstream::scatterList<scalarField>(test); Pout << test << endl; Code:
[1] [1] 2 [1] ( [1] 100{0} [1] 100{1} [1] ) [1] [0] [0] 2 [0] ( [0] 100{0} [0] 100{1} [0] ) [0] Code:
[0] [0] [0] --> FOAM FATAL IO ERROR: [0] error in IOstream "IOstream" for operation operator>>(Istream&, List<T>&) : reading first token [0] [0] file: IOstream at line 0. [0] [0] From function IOstream::fatalCheck(const char*) const [0] in file db/IOstreams/IOstreams/IOstream.C at line 109. [0] [0] It should be said that irrespectively of where I use this piece of code, it compiles. Any help on this problem is greatly appreciated. Kind regards, Niels
__________________
Please note that I do not use the Friend-feature, so do not be offended, if I do not accept a request. |
|
October 23, 2013, 03:37 |
|
#2 |
Senior Member
Niels Gjoel Jacobsen
Join Date: Mar 2009
Location: Copenhagen, Denmark
Posts: 1,902
Rep Power: 37 |
Good morning,
I just wanted to post the solution, however, as it is a work-around, I would still very much like to get an explanation on the behaviour of gather-/scatterList inside a boundary condition. The solution: 1. Apply gather/scatterList on a List<scalarField> in the solver. 2. Concatenate the List<scalarField> into a single scalarField, where the contribution from each processor is placed behind each other. 3. Put this information into a IOField<scalar>. 4. Since the IOField<scalar> is available in the database, it can be looked up using the mesh.thisDb().lookupObject<scalarField>("name") command. Kind regards Niels
__________________
Please note that I do not use the Friend-feature, so do not be offended, if I do not accept a request. |
|
October 24, 2013, 08:02 |
|
#3 |
Super Moderator
Philip Cardiff
Join Date: Mar 2009
Location: Dublin, Ireland
Posts: 1,093
Rep Power: 34 |
Hi Niels,
Just a thought: When you do scatter/gather, all the processors must be calling it at the same time, if not you will get an error. So maybe some of the processor get stuck at earlier boundary conditions waiting for another global call or maybe boundaries with zero faces skip the scatter/gather operations. I am not sure but just my thoughts. Best regards, Philip |
|
October 24, 2013, 15:14 |
|
#4 |
Senior Member
Niels Gjoel Jacobsen
Join Date: Mar 2009
Location: Copenhagen, Denmark
Posts: 1,902
Rep Power: 37 |
Good evening Philip,
Thanks for the thoughts, which made me go back for a bit of testing. I downscaled a bit (using a less complex problem), so I took one of my wave boundary conditions, which are almost as simple as it gets. I added the gather/scatter part and it fails. I tried decomposing, such that all processors had faces on the particular boundary, and it fails. I substituted the gather/scatter by a simple Code:
label a = 1; reduce(a, sumOp<label>()); It should be said that the last tests are done on another computer, so the problem seems to be portable. The problem only occurs, when I place the code snippet inside updateCoeffs(), and it does make it through the construction with a subsequent fail at the first encounter in the first time step. Any ideas for better understanding this behaviour? Kind regards Niels
__________________
Please note that I do not use the Friend-feature, so do not be offended, if I do not accept a request. |
|
February 3, 2014, 19:03 |
|
#5 |
New Member
Join Date: Jan 2014
Posts: 16
Rep Power: 12 |
hello foamers,
Can I ask you a question about gatherList and scatterList? In terms of their functions, are they similar to the MPI functions MPI_Gather and MPI_Scatter? Specifically: MPI_Gather: collect the data from all the processors and then stores the collected data in one array in the root. MPI_Scatter: send the data from the root to the other processors. Is my understanding correct? best f |
|
February 12, 2019, 13:28 |
|
#6 |
Member
Amir
Join Date: Jan 2017
Posts: 32
Rep Power: 9 |
Dear Foamers,
I use foam-extend 4.0 and Finite area method for solving mass conservation equation on the 2D patch of a 3D mesh. In a simple form, I am solving this equation in a finite area method, Code:
deltaF=-(fac::div(q)); Could anybody give me some advice on how to solve this problem. regards, Amir |
|
February 6, 2020, 12:16 |
|
#7 | |
Member
David Andersson
Join Date: Oct 2019
Posts: 46
Rep Power: 7 |
Hi,
I have written a custom functionObject that works fine when I run my simulation in serial and now I would like to adapt it so it also works in parallel, however that is not so easy... To start out and to try to understand the scatter/gather/reduce commands I made a copy of your code Niels. Quote:
I now wanted to do the same thing but for a list of doubles instead of a scalarField. I therefore changed your code to: Code:
List<double> test(Pstream::nProcs()); test[Pstream::myProcNo()].setSize(100, Pstream::myProcNo()); Pstream::gatherList<double>(test); Pstream::scatterList<double>(test); Pout << test << endl; Code:
parallelESWL.C: In member function ‘virtual void Foam::functionObjects::parallelESWL::calcparallelESWL()’: parallelESWL.C:217:31: error: request for member ‘setSize’ in ‘test.Foam::List<double>::<anonymous>.Foam::UList<T>::operator[]<double>(Foam::UPstream::myProcNo(0))’, which is of non-class type ‘double’ test[Pstream::myProcNo()].setSize(100, 1.0); Best, David |
||
February 8, 2020, 11:29 |
|
#8 |
Senior Member
Sergei
Join Date: Dec 2009
Posts: 261
Rep Power: 21 |
||
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Low Mixing time Problem | Mavier | CFX | 5 | April 29, 2013 01:00 |
domain imbalance for enrgy equation | happy | CFX | 14 | September 6, 2012 02:54 |
inlet velocity boundary condition | murali | CFX | 5 | August 3, 2012 09:56 |
CFX13 Post Periodic interface | EtaEta | CFX | 7 | December 8, 2011 18:15 |
Boundary conditions? | Tom | Main CFD Forum | 0 | November 5, 2002 02:54 |