STL-MPI 1.0.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News STL-MPI 1.0.0 (Default branch)
# 1  
Old 01-14-2008
STL-MPI 1.0.0 (Default branch)

STL-MPI is an extension to MPI to support easytransfer of STL objects. It allows tightintegration of MPI with objects from the C++Standard Template Library, assisting thedevelopment of efficient parallel programs usingmessage-passing in C++. STL-MPI provides atransparent and unified mechanism in C++ totransmit STL containers in an object-oriented andtype-safe manner. It supports nested containersfor data transport.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Programming

STL transform question

Hi all, I pass to the transform algorithm two vectors, and the suma function. #include <algorithm> #include <iostream> #include <iterator> #include <vector> using namespace std; class Duo{ public: int one; int two; }; Duo suma(Duo first, Duo last){ Duo ret; ... (1 Reply)
Discussion started by: santiagorf
1 Replies

2. UNIX for Dummies Questions & Answers

c++ stl which rpm?

Hello, I'm using RHEL 5.3, I need to compile C++ code and I'd like to know which rpm contains the STL library. Thanks:) (3 Replies)
Discussion started by: pppswing
3 Replies

3. Programming

STL from win

Help me please with STL source code that works on Windows I've found on Inet STL MRU Cache (it compiles fine with Studio 2008), but when trying to build it with Kdevelop (g++ is the compiler) I've got a series of error. One of them I've placed in the source code. If it's important I can post here... (0 Replies)
Discussion started by: Orlando_ua
0 Replies

4. Programming

STL map

Hi there, I am using the STL map and I print the map using: map <string, float> ngram_token_index ; map <string, float>::iterator map_iter ; //read the map ... // print the map for ( map_iter = ngram_token_index.begin() ; map_iter != ngram_token_index.end() ; map_iter++ ) cout << ... (2 Replies)
Discussion started by: superuser84
2 Replies
Login or Register to Ask a Question
MPI_Group_c2f(3)						      LAM/MPI							  MPI_Group_c2f(3)

NAME
MPI_Group_c2f - Convert a group handle from its C representation to its Fortran representation SYNOPSIS
#include <mpi.h> MPI_Fint MPI_Group_c2f(MPI_Group group) INPUT PARAMETER
group - C group handle RETURN VALUE
f_handle - Fortran group handle 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_Group_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 6.5.8 11/10/2002 MPI_Group_c2f(3)