You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ostream is only used by the root rank, but is required for all ranks.
We shouldn't need to create an ostream on ranks that it is not used.
This is especially problematic for fstreams.
The
ostream
is only used by the root rank, but is required for all ranks.We shouldn't need to create an ostream on ranks that it is not used.
This is especially problematic for
fstream
s.@white238 has a WIP branch for this:
Possibilities to resolve this:
ostream
and one that does not,nullptr
for theostream
instance, and modify the class to deal with anullptr
ostream
from the constructor and add a function to set theostream
pointer.The text was updated successfully, but these errors were encountered: