Re: [OMPI devel] Need help on the distribution process

2017-12-17 Thread Jeff Squyres (jsquyres)
On Dec 16, 2017, at 3:15 AM, saisilpa b via devel wrote: > > I am using openmpi library for my project, which is very old version and > uses the commands like orterun and orted.. Can you be a little more specific: what version are you running? Just about all versions of Open MPI have orter

[OMPI devel] Need help on the distribution process

2017-12-16 Thread saisilpa b via devel
  Hi all,  I need one help..  I am using openmpi library for my project,  which is very old version and uses the commands like orterun and orted..  I written one script and passing the input in the text file, which has 22lakhs lines..  The script has to read one by one and generate output and wri

Re: [OMPI devel] need help to add a module

2011-08-04 Thread Jeff Squyres
On Jul 23, 2011, at 3:08 PM, bin wang wrote: > I'm trying to add a module into open-mpi MCA framework. > I hope the module could be conditionally compiled and linked. > It should be disabled by default and enabled by certain flags at configure > step. Sorry for the delay in replying -- I was on

[OMPI devel] need help to add a module

2011-07-23 Thread bin wang
hello, I'm trying to add a module into open-mpi MCA framework. I hope the module could be conditionally compiled and linked. It should be disabled by default and enabled by certain flags at configure step. When I make a dynamic module, everything is working fine. The problem is that when I make a

Re: [OMPI devel] need help when make

2010-03-24 Thread Jeff Squyres
On Mar 23, 2010, at 9:34 PM, hu yaohui wrote: > Did you mean to add it in the makefile? All i have done now is only to > sustitude the word "sm" with "ht" both in the code and configure file. > i think i have this -avoid-version in mca_btl_ht_LDFLAGS. > why sm didn't report any error?but ht repor

Re: [OMPI devel] need help when make

2010-03-23 Thread hu yaohui
Hi Jeff, Did you mean to add it in the makefile? All i have done now is only to sustitude the word "sm" with "ht" both in the code and configure file. i think i have this -avoid-version in mca_btl_ht_LDFLAGS. why sm didn't report any error?but ht report the error.they are all the same,except the na

Re: [OMPI devel] need help when make

2010-03-23 Thread Jeff Squyres
You probably want to add "-avoid-version" to the mca_btl_ht_LDFLAGS (and the others). See the Libtool docs for more info here; but in general, we don't use the .so versioning scheme for OMPI plugins. Only for actual shared libraries that apps link against. On Mar 23, 2010, at 9:32 AM, hu yao

[OMPI devel] need help when make

2010-03-23 Thread hu yaohui
Hi George,Jeff and All Recently i add a component into the btl,named HT,it is very similar to sm.i meet a problem when make. steps to reproduce 1:make three ht directories under ~/ompi/mca/btl/ht ~/ompi/mca/mpool/ht ~/ompi/mca/common/ht, 2:i copy most code and file from sm component 3:i run ./autog

Re: [OMPI devel] Need help

2008-06-27 Thread Jeff Squyres
On Jun 27, 2008, at 3:25 AM, Gnanasekar Loganathan wrote: I want to run a MPI application on 4 Linux pc's. I have the configuration details also. My questions is, i need to install MPI on 4 linux pc's? Whether i need to run the same MPI application on 4 linux pc's? Yes, you need to have MPI i

[OMPI devel] Need help

2008-06-27 Thread Gnanasekar Loganathan
Hi, I'm very new to MPI. I want to run a MPI application on 4 Linux pc's. I have the configuration details also. My questions is, i need to install MPI on 4 linux pc's? Whether i need to run the same MPI application on 4 linux pc's? /Gnana

Re: [OMPI devel] Need help for semaphore in BML

2007-04-19 Thread Jeff Squyres
On Apr 19, 2007, at 1:45 PM, po...@cc.gatech.edu wrote: I want to put semaphore in bml.h--- mca_bml_send before and after calling btl_send. SO that when a process call btl_send it first lock a global variable X and then proceeds.Also if an external Tcp function wants to send data it should

[OMPI devel] Need help for semaphore in BML

2007-04-19 Thread pooja
Hi, I want to put semaphore in bml.h--- mca_bml_send before and after calling btl_send. SO that when a process call btl_send it first lock a global variable X and then proceeds.Also if an external Tcp function wants to send data it should first lock global variable X and then proceed. Can anyone