Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mpi_get_version(3openmpi) [osx man page]

MPI_Get_version(3OpenMPI)												 MPI_Get_version(3OpenMPI)

NAME
MPI_Get_version - Returns the version of the standard corresponding to the current implementation. SYNTAX
C Syntax #include <mpi.h> int MPI_Get_version(int *version, int *subversion) Fortran Syntax INCLUDE 'mpif.h' MPI_GET_VERSION(VERSION, SUBVERSION, IERROR) INTEGER VERSION, SUBVERSION, IERROR C++ Syntax #include <mpi.h> void Get_version(int& version, int& subversion) OUTPUT PARAMETERS
version The major version number of the corresponding standard (integer). subversion The minor version number of the corresponding standard (integer). IERROR Fortran only: Error status (integer). DESCRIPTION
Since Open MPI is MPI 2.0 compliant, this function will return a version value of 2 and a subversion value of 0 for this release. NOTE
MPI_Get_version is one of the few functions that can be called before MPI_Init and after MPI_Finalize. ERRORS
Almost all MPI routines return an error value; C routines as the value of the function and Fortran routines in the last argument. C++ func- tions do not return errors. If the default error handler is set to MPI::ERRORS_THROW_EXCEPTIONS, then on error the C++ exception mechanism will be used to throw an MPI:Exception object. Before the error value is returned, the current MPI error handler is called. By default, this error handler aborts the MPI job, except for I/O function errors. The error handler may be changed with MPI_Comm_set_errhandler; the predefined error handler MPI_ERRORS_RETURN may be used to cause error values to be returned. Note that MPI does not guarantee that an MPI program can continue past an error. Open MPI 1.2 September 2006 MPI_Get_version(3OpenMPI)

Check Out this Related Man Page

MPI_Get_version(3)							MPI							MPI_Get_version(3)

NAME
MPI_Get_version - Return the version number of MPI SYNOPSIS
int MPI_Get_version( int *version, int *subversion ) OUTPUT PARAMETERS
version - Version of MPI subversion - Subversion of MPI THREAD AND INTERRUPT SAFETY
This routine is both thread- and interrupt-safe. This means that this routine may safely be used by multiple threads and from within a signal handler. NOTES FOR FORTRAN
All MPI routines in Fortran (except for MPI_WTIME and MPI_WTICK ) have an additional argument ierr at the end of the argument list. ierr is an integer and has the same meaning as the return value of the routine in C. In Fortran, MPI routines are subroutines, and are invoked with the call statement. All MPI objects (e.g., MPI_Datatype , MPI_Comm ) are of type INTEGER in Fortran. ERRORS
All MPI routines (except MPI_Wtime and MPI_Wtick ) return an error value; C routines as the value of the function and Fortran routines in the last argument. Before the value is returned, the current MPI error handler is called. By default, this error handler aborts the MPI job. The error handler may be changed with MPI_Comm_set_errhandler (for communicators), MPI_File_set_errhandler (for files), and MPI_Win_set_errhandler (for RMA windows). The MPI-1 routine MPI_Errhandler_set may be used but its use is deprecated. The predefined error handler MPI_ERRORS_RETURN may be used to cause error values to be returned. Note that MPI does not guarentee that an MPI program can continue past an error; however, MPI implementations will attempt to continue whenever possible. MPI_SUCCESS - No error; MPI routine completed successfully. LOCATION
version.c 11/2/2007 MPI_Get_version(3)
Man Page

3 More Discussions You Might Find Interesting

1. OS X (Apple)

Problem building graphserver

I've been trying to build this thing graphserver (Graphserver - Fine Open Source Itineraries) but I'm getting a build error on Mac OS X 1.4.11. I've tried using subversion and 0.5 release, both report the same problem. $ sudo ruby install.rb build Password: checking for main() in... (0 Replies)
Discussion started by: ollie saunders
0 Replies

2. Shell Programming and Scripting

Bash script error: missing destination file name operand.

Ok, i've been messing around in debian the past few days, setting up programs like subversion, mysql and logrotate. The purpose of this script is to use subversion to backup the binary logs. It runs in the cron every 2 hours or so (although I can't get my script to run properly atm, which is why... (1 Reply)
Discussion started by: cganly
1 Replies

3. UNIX and Linux Applications

Problem with accessing subversion installed on unix server through windows GUI

We are using subversion as a version control system in our project. We are connecting to client`s sun Solaris box through check point VPN. Client has installed subversion . We have created repository and add files to it. Now we want to access the same from our windows machine (through... (0 Replies)
Discussion started by: aasid
0 Replies

Featured Tech Videos