From aa00e0c0cac18d4332c022789581aa1adf100452 Mon Sep 17 00:00:00 2001 From: DENEL Bertrand Date: Mon, 13 Oct 2025 18:57:44 -0500 Subject: [PATCH] Draft --- src/pygeosx/pygeosx.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pygeosx/pygeosx.cpp b/src/pygeosx/pygeosx.cpp index fff9d7aea9c..a2728c1230e 100644 --- a/src/pygeosx/pygeosx.cpp +++ b/src/pygeosx/pygeosx.cpp @@ -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 @@ -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() ); }