On Saturday 14 August 2010 00:10:49 Lisandro Dalcin wrote:
> On 13 August 2010 05:22, Matthias Jurenz
wrote:
> > On Wednesday 11 August 2010 23:16:50 Lisandro Dalcin wrote:
> >> On 11 August 2010 03:12, Matthias Jurenz
> >
> > wrote:
> >> > Hello Lisandro,
> >> >
> >> > this problem will be fixe
On 13 August 2010 05:22, Matthias Jurenz wrote:
> On Wednesday 11 August 2010 23:16:50 Lisandro Dalcin wrote:
>> On 11 August 2010 03:12, Matthias Jurenz
> wrote:
>> > Hello Lisandro,
>> >
>> > this problem will be fixed in the next Open MPI release. There was an
>> > obsolete preprocessor condit
On Wednesday 11 August 2010 23:16:50 Lisandro Dalcin wrote:
> On 11 August 2010 03:12, Matthias Jurenz
wrote:
> > Hello Lisandro,
> >
> > this problem will be fixed in the next Open MPI release. There was an
> > obsolete preprocessor condition around the MPI_Init_thread wrapper, so
> > the source
On 11 August 2010 03:12, Matthias Jurenz wrote:
> Hello Lisandro,
>
> this problem will be fixed in the next Open MPI release. There was an obsolete
> preprocessor condition around the MPI_Init_thread wrapper, so the source code
> could never be compiled :-(
>
> Thanks for the hint.
>
> Matthias
>
Hello Lisandro,
this problem will be fixed in the next Open MPI release. There was an obsolete
preprocessor condition around the MPI_Init_thread wrapper, so the source code
could never be compiled :-(
Thanks for the hint.
Matthias
On Wednesday 11 August 2010 05:34:33 Lisandro Dalcin wrote:
>
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
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
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