Hi,
I wanted to give everyone a heads-up about a new POSIX shared memory
component
that has been in the works for a while now and is ready to be pushed
into the
trunk.
http://bitbucket.org/samuelkgutierrez/ompi_posix_sm_new
Some highlights:
o New posix component now the new default.
o May
Committed in r23587
:)
On Jul 31, 2010, at 12:51 PM, Joshua Hursey wrote:
> WHAT:
> Checkpoint/Restart-based automatic recovery and process migration, advanced
> checkpoint storage, C/R-enabled debugging, MPI Extension API for C/R, and
> some bug fixes.
>
> WHY:
> This commit includes a varie
Below you have C program that will MPI_Init_thread()
$ cat demo/helloworld.c
#include
#include
int main(int argc, char *argv[])
{
int provided;
int size, rank, len;
char name[MPI_MAX_PROCESSOR_NAME];
MPI_Init_thread(&argc, &argv, MPI_THREAD_MULTIPLE, &provided);
MPI_Comm_size(MPI_CO
Lisandro,
Thanks for the report. I quickly checked the Open MPI source code and the .so
library and both show the existence of both MPI_Init_thread and
PMPI_Init_thread symbols.
00031b60 T _MPI_Init_thread
0005e7c0 T _PMPI_Init_thread
I CC'ed the VT folks.
Thanks,
george
On 10 August 2010 22:59, George Bosilca wrote:
> Lisandro,
>
> Thanks for the report. I quickly checked the Open MPI source code and the .so
> library and both show the existence of both MPI_Init_thread and
> PMPI_Init_thread symbols.
>
> 00031b60 T _MPI_Init_thread
> 0005e7c0 T