MPI-IO Test 1.000.21 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News MPI-IO Test 1.000.21 (Default branch)
# 1  
Old 09-24-2008
MPI-IO Test 1.000.21 (Default branch)

The MPI-IO Test is built on top of MPI's I/O callsand is used to gather timing information forreading from and writing to file(s) using avariety of I/O profiles. A data aggregationcapability is available and the user can pass downMPI-IO, ROMIO, and file system specific hints. TheMPI-IO Test can be used for performancebenchmarking and, in some cases, to diagnoseproblems with file systems or I/O networks.License: BSD License (revised)Changes:
Assorted minor bugfixes and code cleanups.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

speed test +20,000 file existance checks too slow

Need to make a very fast file existence checker. Passing in 20-50K num of files In the code below ${file} is a file with a listing of +20,000 files. test_speed is the script. I am commenting out the results of <time test_speed try>. The normal "test -f" is much much too slow when a system... (2 Replies)
Discussion started by: nullwhat
2 Replies

2. News, Links, Events and Announcements

Intel Benchmark Test: Linux Goes to 600,000

For story: http://story.news.yahoo.com/news?tmpl=story&cid=75&ncid=738&e=9&u=/nf/20030606/tc_nf/21680 (0 Replies)
Discussion started by: Neo
0 Replies
Login or Register to Ask a Question
MPI_Errhandler_c2f(3)						      LAM/MPI						     MPI_Errhandler_c2f(3)

NAME
MPI_Errhandler_c2f - Convert an error handler from its C representation to its Fortran representation SYNOPSIS
#include <mpi.h> MPI_Fint MPI_Errhandler_c2f(MPI_Errhandler err) INPUT PARAMETER
err - C error handler RETURN VALUE
f_handle - Fortran error handler DESCRIPTION
This is a non-standard MPI routine. It is mainly here because ROMIO needs it. 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
This function does not return the normal MPI_SUCCESS integer value upon success. Instead, it returns a handle to the converted object. If an error occurs, the appropriate NULL handle will be returned. SEE ALSO
MPI_Errhandler_c2f(3) MORE INFORMATION
For more information, please see the official MPI Forum web site, which contains the text of both the MPI-1 and MPI-2 standards. These documents contain detailed information about each MPI function (most of which is not duplicated in these man pages). http://www.mpi-forum.org/ LOCATION
handles.c LAM
/MPI 7.1.4 6/24/2006 MPI_Errhandler_c2f(3)