From a330ad3019803c1a5a5dcc6ed8659c3d675b08d1 Mon Sep 17 00:00:00 2001 From: Matthias Hochsteger Date: Wed, 13 Feb 2019 11:15:50 +0100 Subject: [PATCH] Startup message with MPI --- ng/ngappinit.cpp | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/ng/ngappinit.cpp b/ng/ngappinit.cpp index a3db7789..43ff1afd 100644 --- a/ng/ngappinit.cpp +++ b/ng/ngappinit.cpp @@ -110,21 +110,7 @@ int main(int argc, char ** argv) #ifdef PARALLEL - if (netgen::ntasks == 1) - { - cout << "Run parallel Netgen with 'mpirun -np xy netgen'" << endl; - } - else - { - cout << "Running MPI - parallel using " - << netgen::ntasks << " processor" - << ((netgen::ntasks > 1) ? "s " : " ") << endl; - - cout << "MPI-version = " << MPI_VERSION << '.' << MPI_SUBVERSION << endl; - - if (mpi_provided == MPI_THREAD_MULTIPLE) - cout << "multithreaded MPI is supported" << endl; - } + cout << "Including MPI version " << MPI_VERSION << '.' << MPI_SUBVERSION << endl; #endif }