Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mpi_win_set_attr(3openmpi) [osx man page]

MPI_Win_set_attr(3OpenMPI)												MPI_Win_set_attr(3OpenMPI)

NAME
MPI_Win_set_attr - Sets the value of a window attribute. SYNTAX
C Syntax #include <mpi.h> int MPI_Win_set_attr(MPI_Win win, int win_keyval, void *attribute_val) Fortran Syntax (see FORTRAN 77 NOTES) INCLUDE 'mpif.h' MPI_WIN_SET_ATTR(WIN, WIN_KEYVAL, ATTRIBUTE_VAL, IERROR) INTEGER WIN, WIN_KEYVAL, IERROR INTEGER(KIND=MPI_ADDRESS_KIND) ATTRIBUTE_VAL C++ Syntax #include <mpi.h> void MPI::Win::Set_attr(int win_keyval, const void* attribute_val) INPUT
/OUTPUT PARAMETER win Window to which attribute will be attached (handle). INPUT PARAMETERS
win_keyval Key value (integer). attribute_val Attribute value. OUTPUT PARAMETER
IERROR Fortran only: Error status (integer). DESCRIPTION
FORTRAN 77 NOTES The MPI standard prescribes portable Fortran syntax for the ATTRIBUTE_VAL argument only for Fortran 90. FORTRAN 77 users may use the non- portable syntax INTEGER*MPI_ADDRESS_KIND ATTRIBUTE_VAL where MPI_ADDRESS_KIND is a constant defined in mpif.h and gives the length of the declared integer in bytes. 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_Win_set_attr(3OpenMPI)

Check Out this Related Man Page

MPI_Win_delete_attr(3OpenMPI)											     MPI_Win_delete_attr(3OpenMPI)

NAME
MPI_Win_delete_attr - Deletes an attribute from a window. SYNTAX
C Syntax #include <mpi.h> int MPI_Win_delete_attr(MPI_Win win, int win_keyval) Fortran Syntax INCLUDE 'mpif.h' MPI_WIN_DELETE_ATTR(WIN, WIN_KEYVAL, IERROR) INTEGER WIN, WIN_KEYVAL, IERROR C++ Syntax #include <mpi.h> void MPI::Win::Delete_attr(int win_keyval) INPUT
/OUTPUT PARAMETER win Window from which the attribute is deleted (handle). INPUT PARAMETER
win_keyval Key value (integer). OUTPUT PARAMETER
IERROR Fortran only: Error status (integer). 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_Win_delete_attr(3OpenMPI)
Man Page

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Error : [: missing `]'

Hi, I am attempting to test the input value for an integer. And if the value is not an integer, the intent is to complain about it and exit. Only if I can get past the syntax error, life will be full. # test input to be a number +$'; ] && { echo "Invalid input; Enter an integer..."; exit 2; }... (7 Replies)
Discussion started by: IETF
7 Replies

2. Programming

Problem with IF ELSEIF and GOTO statements in FORTRAN

Hi I am reading a book about Fortran 90 and I write the following code, to test my understanding of the first chapter. I have a problem with the last section of the code with deals with an IF, ELSEIF, and GOTO statements. Here is my Code PROGRAM sim ! This code is used to solve two... (3 Replies)
Discussion started by: faizlo
3 Replies

3. Programming

Error in my FORTRAN program

I have a Fortran program and I am writing out to logical unit 7. The program is reading from a text file and writing to the new file formatted. It gets through the read and writes some to the file but then stops with the following error: 1525-013 The sequential WRITE statement cannot be... (5 Replies)
Discussion started by: KathyB148
5 Replies

4. Shell Programming and Scripting

Syntax error: `]' unexpected

I am getting this error Syntax error: `]' unexpected. Did I do something wrong with elif? Does ksh not like double brackets? if ]; then #echo hi source ~/.bashrc; elif ]; then #echo hi source ~/.kshrc; fi (5 Replies)
Discussion started by: cokedude
5 Replies