\fBMPI_Wtick\fP\- Returns the resolution of MPI_Wtime.
.SHSYNTAX
.ftR
.SHCSyntax
.nf
#include <mpi.h>
double MPI_Wtick()
.SHFortranSyntax
.nf
INCLUDE 'mpif.h'
DOUBLE PRECISION MPI_WTICK()
.SHC++Syntax
.nf
#include <mpi.h>
double Wtick()
.SHRETURNVALUE
.ftR
Time in seconds of resolution of MPI_Wtime.
.SHDESCRIPTION
.ftR
MPI_Wtick returns the resolution of MPI_Wtime in seconds. That is, it returns, as a double-precision value, the number of seconds between successive clock ticks. For example, if the clock is implemented by the hardware as a counter that is incremented every millisecond, the value returned by MPI_Wtick should be 10^-3.
.PP
.SHNOTE
This function does not return an error value. Consequently, the result of calling it before MPI_Init or after MPI_Finalize is undefined.