Newsgroups: comp.parallel.mpi
From: Jaideep Ray <jaray@nubis.rutgers.edu>
Subject: Re: Start_up MPI on the SP2
Organization: Rutgers Univ.
Date: 17 Mar 1996 04:19:16 GMT
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Message-ID: <4ig3s4$sq3@dziuxsolim.rutgers.edu>

cazier@iis.ee.ethz.ch (Jean-Baptiste Cazier) wrote:
>I used to work with the mpich implementation of MPI with a network of Sun
>Now I want to go on an SP2. So I configured with 
>>configure -device=ch_eui -arch=rs6000
>then I compiled with
>>make
>I compiled a basic example with 
>>make fpi
>Till that point there was no problem
>But when I try to launch it via
>>mpirun -np 2 fpi
>nothing happens.
>If i try 
>>poe fpi
>or
>>poe fpi -rmpool 1 -procs 2 -euilib ip 
>I have the following error message:
>ERROR: 0031-808  Pool number must be specified when using Resource Manager
>ERROR: 0031-635  Non-zero status -1 returned from pm_mgr_init
>


	Try setting these environment variables.
#!/bin/sh

# Set environment variables for interactive runs

setenv MP_RMPOOL 0
setenv MP_PROCS  8
setenv MP_RESD   yes
setenv MP_HOSTFILE NULL
setenv MP_EUILIB ip
setenv MP_EUIDEVICE css0

# Inform

   echo '  Environment set for interactive runs '


	Then do 
> poe fpi.

	Should work. Keep us posted.

	Ray


