Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I check the version of MPICH?

Tags:

mpi

mpich

As stated in the question, what is the command that lists the current version of MPICH? I am running CentOS.

like image 749
Isopycnal Oscillation Avatar asked Jun 28 '13 03:06

Isopycnal Oscillation


People also ask

How do you check if I have OpenMPI?

With OpenMPI, the easiest thing to do is to run ompi_info ; the first few lines will give you the information you want.

What is the difference between OpenMPI and Mpich?

MPICH is supposed to be high-quality reference implementation of the latest MPI standard and the basis for derivative implementations to meet special purpose needs. Open-MPI targets the common case, both in terms of usage and network conduits.

What is Mpich package?

High-Performance Portable MPI. MPICH is a high performance and widely portable implementation of the Message Passing Interface (MPI) standard. MPICH and its derivatives form the most widely used implementations of MPI in the world.


1 Answers

The command you run to start your application with MPICH is mpiexec, so the way to check the version is:

mpiexec --version
like image 95
Wesley Bland Avatar answered Sep 19 '22 16:09

Wesley Bland