Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/pygeosx/pygeosx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#include "fileIO/python/PyVTKOutputType.hpp"
#include "mainInterface/initialization.hpp"
#include "LvArray/src/python/PyArray.hpp"
#include "mainInterface/version.hpp"

// System includes
#pragma GCC diagnostic push
Expand Down Expand Up @@ -87,6 +88,8 @@ PyObject * init( PyObject * const pyArgv, bool const performSetup, long const py
basicSetup( argv.size() - 1, argv.data(), false );
g_alreadyInitialized = true;

outputVersionInfo();

// Verify that the ranks match, there is no recovering from this if incorrect.
GEOS_ERROR_IF_NE( pythonMPIRank, MpiWrapper::commRank() );
}
Expand Down
Loading