Re: [OMPI devel] [2.0.1.rc1] Solaris MPIX failure

2016-08-23 Thread Gilles Gouaillardet
Paul, you can download a patch at https://patch-diff.githubusercontent.com/raw/open-mpi/ompi-release/pull/1336.patch (note you need recent autotools in order to use it) Cheers, Gilles On 8/23/2016 10:40 PM, r...@open-mpi.org wrote: Looks like Solaris has a “getupeercred” - can you take

[hwloc-devel] Create success (hwloc git dev-1230-g922cbec)

2016-08-23 Thread Ralph H Castain
Creating nightly hwloc snapshot git tarball was a success. Snapshot: hwloc dev-1230-g922cbec Start time: Tue Aug 23 18:01:12 PDT 2016 End time: Tue Aug 23 18:04:47 PDT 2016 Your friendly daemon, Cyrador ___ hwloc-devel mailing list

Re: [MTT devel] reporter error using pyclient

2016-08-23 Thread Josh Hursey
For the CherryPy submission you need to change the url to: https://mtt.open-mpi.org/submit/cpy/ This is so we can have the old PHP version and the CherryPy version running concurrently. Give that a try. I checked and the server is still running. On Tue, Aug 23, 2016 at 10:53 AM, Howard

Re: [OMPI devel] [2.0.1.rc1] dlopen_test crashes with xlc and studio compilers

2016-08-23 Thread Jeff Squyres (jsquyres)
Thanks! > On Aug 23, 2016, at 12:49 PM, Paul Hargrove wrote: > > Jeff, > Correct, the latest GA release is 12.5 and it correctly handles -m32 where > 12.4 failed. > -Paul [Sent from my phone] > > On Tuesday, August 23, 2016, Jeff Squyres (jsquyres)

Re: [OMPI devel] [2.0.1.rc1] dlopen_test crashes with xlc and studio compilers

2016-08-23 Thread Paul Hargrove
Jeff, Correct, the latest GA release is 12.5 and it correctly handles -m32 where 12.4 failed. -Paul [Sent from my phone] On Tuesday, August 23, 2016, Jeff Squyres (jsquyres) wrote: > Paul -- > > 12.5 is the latest (last?) version of the Oracle compilers, right? > > If that's

Re: [OMPI devel] [2.0.1.rc1] dlopen_test crashes with xlc and studio compilers

2016-08-23 Thread Jeff Squyres (jsquyres)
Paul -- 12.5 is the latest (last?) version of the Oracle compilers, right? If that's correct: are you saying that 12.5 (GA/not beta) *does* handle the dlopen test with -m32 properly? If so, it sounds like we should amend README to say that we support 12.5 and nothing earlier (given that 12.5

[MTT devel] reporter error using pyclient

2016-08-23 Thread Howard Pritchard
HI Folks, More info, grokking the IUdatabase python code and modified my input I seem to get to something, but then the http request to the database times out: Hmmokay I turned off my vpn and things got further but it looks like there's nothing at mtt.open-org: <<<

Re: [OMPI devel] Performance analysis proposal

2016-08-23 Thread Artem Polyakov
Hi, Christoph Please, check https://github.com/open-mpi/ompi/wiki/Request-refactoring-test for the testing methodology and https://github.com/open-mpi/2016-summer-perf-testing for examples and launch scripts. 2016-08-23 21:20 GMT+07:00 Christoph Niethammer : > Hello, > > I

Re: [OMPI devel] Performance analysis proposal

2016-08-23 Thread Christoph Niethammer
Hello, I just came over this and would like to contribute some results from our system(s). Are there any specific configure options you want to see enabled beside --enable-mpi-thread-multiple? How to commit results? Best Christoph Niethammer - Original Message - From: "Arm

Re: [OMPI devel] [2.0.1.rc1] Solaris MPIX failure

2016-08-23 Thread r...@open-mpi.org
Looks like Solaris has a “getupeercred” - can you take a look at it, Gilles? We’d have to add that to our AC_CHECK_FUNCS and update the native sec component. > On Aug 23, 2016, at 6:32 AM, r...@open-mpi.org wrote: > > I took a quick glance at this one, and the only way I can see to get that >

Re: [OMPI devel] [2.0.1.rc1] Solaris MPIX failure

2016-08-23 Thread r...@open-mpi.org
I took a quick glance at this one, and the only way I can see to get that error is from this block of code: #if defined(HAVE_STRUCT_UCRED_UID) euid = ucred.uid; gid = ucred.gid; #else euid = ucred.cr_uid; gid = ucred.cr_gid; #endif #elif defined(HAVE_GETPEEREID)

Re: [OMPI devel] [2.0.1.rc1] runtime failure on MacOS 10.6

2016-08-23 Thread r...@open-mpi.org
Actually, I found that we already dealt with this, but the version in the 2.0.1 branch didn’t include the update. I’ll see what else is missing and ask that it be brought across. Thanks Paul Ralph > On Aug 22, 2016, at 9:25 PM, r...@open-mpi.org wrote: > > Hmmm...okay. I guess we’ll replace

Re: [OMPI devel] [2.0.1.rc1] Solaris MPIX failure

2016-08-23 Thread r...@open-mpi.org
Thanks Gilles! > On Aug 23, 2016, at 3:42 AM, Gilles Gouaillardet > wrote: > > Thanks Paul, > > at first glance, something is going wrong in the sec module under solaris. > I will keep digging tomorrow > > Cheers, > > Gilles > > On Tuesday, August 23, 2016,

Re: [OMPI devel] Open MPI 2.0.0: Fortran with NAG compiler (nagfor)

2016-08-23 Thread Kawashima, Takahiro
Gilles, Jeff, In Open MPI 1.6 days, MPI_ARGVS_NULL and MPI_STATUSES_IGNORE were defined as double precision and MPI_Comm_spawn_multiple and MPI_Waitall etc. interfaces had two subroutines each. https://github.com/open-mpi/ompi-release/blob/v1.6/ompi/include/mpif-common.h#L148

Re: [OMPI devel] stdin issue with master

2016-08-23 Thread Gilles Gouaillardet
Thanks Ralph, I noticed an other issue (hang) with echo hello | mpirun -stdin all -np 1 cat (any number of tasks can be used) I guess this is a pretty uncommon usage, so fixing this could be low priority Cheers, Gilles On Tuesday, August 23, 2016, r...@open-mpi.org

Re: [OMPI devel] [2.0.1.rc1] Solaris MPIX failure

2016-08-23 Thread Gilles Gouaillardet
Thanks Paul, at first glance, something is going wrong in the sec module under solaris. I will keep digging tomorrow Cheers, Gilles On Tuesday, August 23, 2016, Paul Hargrove wrote: > On Solaris 11.3 on x86-64: > > $ mpirun -mca btl sm,self,openib -np 2 -host