[petsc-dev] PetscViewerASCIIPushSynchronized

Smith, Barry F. bsmith at mcs.anl.gov
Thu May 2 17:58:12 CDT 2019


   Good question. I added the concept in 7b23a99a4cafc5f74ba930d377af92d6b7c0a4c1 and unfortunately didn't document why, nor could I find any mention of why in the mailing lists. The one thing I do remember is that there was a definite reason why it was needed (I just don't remember what).

Maybe it was as simple as the flush was too slow when it just was done always by default. Note that you cannot count on every process calling PetscViewerASCIISynchronizedPrintf() so not all processes will KNOW if synchronized output is in use or not, this means every flush ALWAYS requires contact with everyone to see if there is anything to flush. (Yes the current flush code is very inefficient, perhaps making it much faster would help, perhaps
each flush could start with an MPI_Allreduce to know if it should proceed.). 

The push/pop design was suggested by Jed (and is lightly documented in the email archives).

So my conclusion is, with the current flush code the option has too exist; with much faster flush code I don't know if the flag is needed.

   Barry




> On May 2, 2019, at 11:13 AM, Hapla Vaclav via petsc-dev <petsc-dev at mcs.anl.gov> wrote:
> 
> Is PetscViewerASCIIPushSynchronized / PetscViewerASCIIPopSynchronized really needed?
> 
> I just got a feedback it's really confusing.
> Why we cannot just switch to the "synchronized mode" with the first call to PetscViewerASCIISynchronizedPrintf, and then hold this mode until PetscViewerFlush, which must be called anyway to get the anticipated output?
> What is the motivation for multiple consecutive pushes when this is a boolean state?
> 
> I would at least try to improve the documentation anyway. For example, PetscViewerASCIISynchronizedPrintf mentions PetscViewerASCIISynchronizeAllow which no longer exists. I will fix that at once.
> 
> Thanks,
> Vaclav



More information about the petsc-dev mailing list