Re: [OMPI users] Using hostfile with default hostfile

2010-10-27 Thread Eugene Loh
jody wrote: Where is the option 'default-hostfile' described? Try "mpirun --help". Not everything makes it to the man page. Heck, not everything is documented! It does not appear in mpirun's man page (for v. 1.4.2) and i couldn't find anything like that with googling. On Wed, Oct 27, 2

Re: [OMPI users] Open MPI program cannot complete

2010-10-27 Thread Jack Bryan
thanksI got :-bash-3.2$ padb -Ormgr=pbs -Q 48516.cystorm2$VAR1 = {};Job 48516.cluster is not activeActually, the job is running. Any help is appreciated. thanksJinxu DingOct. 27 2010 > Subject: Re: [OMPI users] Open MPI program cannot complete > From: ash...@pittman.co.uk > Date: Tue, 26 Oct 20

Re: [OMPI users] Help passing filename arguments with spaces through mpirun on windows

2010-10-27 Thread Shiqing Fan
Hi, You might also want to try "C:\\Program Files\\some dir". Shiqing On 2010-10-26 4:54 PM, Reuti wrote: Am 26.10.2010 um 16:48 schrieb Bill McGrory: I'm trying to pass a full path name as an argument to my executable through mpirun on a windows platform. Some of the directories have spac

Re: [OMPI users] Using hostfile with default hostfile

2010-10-27 Thread jody
Where is the option 'default-hostfile' described? It does not appear in mpirun's man page (for v. 1.4.2) and i couldn't find anything like that with googling. Jody On Wed, Oct 27, 2010 at 4:02 PM, Ralph Castain wrote: > Specify your hostfile as the default one: > > mpirun --default-hostfile ./Cl

Re: [OMPI users] Using hostfile with default hostfile

2010-10-27 Thread Ralph Castain
Specify your hostfile as the default one: mpirun --default-hostfile ./Cluster.hosts Otherwise, we take the default hostfile and then apply the hostfile as a filter to select hosts from within it. Sounds strange, I suppose, but the idea is that the default hostfile can contain configuration info

Re: [OMPI users] Using hostfile with default hostfile

2010-10-27 Thread Reuti
Hi, Am 27.10.2010 um 15:51 schrieb Stefan Kuhne: > my Cluster has a configured default hostfile. > > When i use another hostfile for one job i get: > > cluster-admin@Head:~/Cluster/hello$ mpirun --hostfile ../Cluster.hosts > ./hello >

[OMPI users] Using hostfile with default hostfile

2010-10-27 Thread Stefan Kuhne
Hello, my Cluster has a configured default hostfile. When i use another hostfile for one job i get: cluster-admin@Head:~/Cluster/hello$ mpirun --hostfile ../Cluster.hosts ./hello -- There are no allocated resources for the a

Re: [OMPI users] Some problems

2010-10-27 Thread Shiqing Fan
Hi, Sorry for late reply. At moment, CMake build with MinGW is not supported yet. For the undefined reference problem, if you use VS to compile your source code, you probably have to add libmpi_cxx.lib, libmpi.lib, libopen-pal.lib and libopen-rte.lib into the project linker properties (don

Re: [OMPI users] Problem with MPI_Comm_accept in a dynamic client/server application

2010-10-27 Thread Shiqing Fan
Hi Kalin, These warning messages are harmless, some of the IPv6 feature is not yet supported on Windows, but it can still run with IPv4. If you want to get rid of these messages, just disable the IPv6 support in CMake. Regards, Shiqing On 2010-10-14 6:46 PM, Kalin Kanov wrote: Thank you for

Re: [OMPI users] Problem with MPI_Comm_accept in a dynamic client/server application

2010-10-27 Thread Shiqing Fan
Hi Kalin, Sorry for the late reply. I checked the code and got confused. (I'm not and MPI expert) I'm just wondering how to start the server and client in the same mpirun command while the client needs a hand-input port name, which is given by the server at runtime. I found a similar progr