Re: [OMPI devel] [OMPI svn-full] svn:open-mpi r32225 - in trunk: contrib/build-mca-comps-outside-of-tree ompi/contrib/vt/vt ompi/contrib/vt/vt/extlib/otf opal/mca/event/libevent2021/libevent

2014-07-12 Thread Siddhartha Jana
Hello,
Just fyi: have forwarded the logs below to the VT mailing list
at Vampir-Support 

Ticket number: 2014071241000219

-- Sid
Univ. of Houston


On 12 July 2014 17:51, Jeff Squyres (jsquyres)  wrote:

> Yes, but they're a 3rd party -- they rarely pay attention to OMPI stuff
> unless we ping them specifically (CC'ed).
>
> They keep their tree in tight sync with the VT copy in the OMPI SVN --
> they should be consulted with these kinds of changes.
>
> Andreas / Matthias -- any problems with this change?
>
>
>
> On Jul 12, 2014, at 11:47 AM, Mike Dubman 
> wrote:
>
> > Nope
> > Are they on list?
> >
> > On Jul 12, 2014 6:36 PM, "Jeff Squyres (jsquyres)" 
> wrote:
> > Mike --
> >
> > Did you contact the VT folks before making this change?
> >
> >
> >
> > On Jul 12, 2014, at 8:38 AM,  <
> svn-commit-mai...@open-mpi.org> wrote:
> >
> > > Author: miked (Mike Dubman)
> > > Date: 2014-07-12 08:38:15 EDT (Sat, 12 Jul 2014)
> > > New Revision: 32225
> > > URL: https://svn.open-mpi.org/trac/ompi/changeset/32225
> > >
> > > Log:
> > > BUILD: support new automake
> > >
> > > new automake requires subdirs-object directive, to resolve this:
> > >
> > > 09:43:37 automake: warning: possible forward-incompatibility.
> > > 09:43:37 automake: At least a source file is in a subdirectory, but
> the 'subdir-objects'
> > > 09:43:37 automake: automake option hasn't been enabled.  For now, the
> corresponding output
> > > 09:43:37 automake: object file(s) will be placed in the top-level
> directory.  However,
> > > 09:43:37 automake: this behaviour will change in future Automake
> versions: they will
> > > 09:43:37 automake: unconditionally cause object files to be placed in
> the same subdirectory
> > > 09:43:37 automake: of the corresponding sources.
> > > 09:43:37 automake: You are advised to start using 'subdir-objects'
> option throughout your
> > > 09:43:37 automake: project, to avoid future incompatibilities.
> > > 09:43:37 tools/otfmerge/Makefile.common:13: warning: source file
> '$(OTFMERGESRCDIR)/otfmerge.c' is in a subdirectory,
> > > 09:43:37 tools/otfmerge/Makefile.common:13: but option
> 'subdir-objects' is disabled
> > >
> > > cmr=v1.8.2:reviewer=ompi-rm1.8
> > >
> > > Text files modified:
> > >   trunk/contrib/build-mca-comps-outside-of-tree/configure.ac | 2
> +-
> > >   trunk/ompi/contrib/vt/vt/configure.ac  | 2
> +-
> > >   trunk/ompi/contrib/vt/vt/extlib/otf/configure.ac   | 2
> +-
> > >   trunk/opal/mca/event/libevent2021/libevent/configure.ac| 2
> +-
> > >   4 files changed, 4 insertions(+), 4 deletions(-)
> > >
> > > Modified: trunk/contrib/build-mca-comps-outside-of-tree/configure.ac
> > >
> ==
> > > --- trunk/contrib/build-mca-comps-outside-of-tree/configure.ac
>  Sat Jul 12 08:29:30 2014(r32224)
> > > +++ trunk/contrib/build-mca-comps-outside-of-tree/configure.ac
>  2014-07-12 08:38:15 EDT (Sat, 12 Jul 2014)  (r32225)
> > > @@ -25,7 +25,7 @@
> > > AC_CONFIG_AUX_DIR(config)
> > > AC_CONFIG_MACRO_DIR(config)
> > >
> > > -AM_INIT_AUTOMAKE([foreign dist-bzip2 no-define 1.11])
> > > +AM_INIT_AUTOMAKE([foreign dist-bzip2 no-define 1.11 subdir-objects])
> > > AM_SILENT_RULES([yes])
> > >
> > > AC_LANG([C])
> > >
> > > Modified: trunk/ompi/contrib/vt/vt/configure.ac
> > >
> ==
> > > --- trunk/ompi/contrib/vt/vt/configure.ac Sat Jul 12 08:29:30
> 2014(r32224)
> > > +++ trunk/ompi/contrib/vt/vt/configure.ac 2014-07-12 08:38:15 EDT
> (Sat, 12 Jul 2014)  (r32225)
> > > @@ -5,7 +5,7 @@
> > > AC_INIT([VampirTrace], [m4_normalize(esyscmd([cat VERSION]))], [
> vampirsupp...@zih.tu-dresden.de], [VampirTrace])
> > > AC_CONFIG_AUX_DIR(config)
> > > AC_CONFIG_MACRO_DIR(config/m4)
> > > -AM_INIT_AUTOMAKE([foreign])
> > > +AM_INIT_AUTOMAKE([foreign subdir-objects])
> > > AC_CONFIG_HEADERS(config.h)
> > >
> > > # If Automake supports silent rules, enable them.
> > >
> > > Modified: trunk/ompi/contrib/vt/vt/extlib/otf/configure.ac
> > >
> ==
> > > --- trunk/ompi/contrib/vt/vt/extlib/otf/configure.ac  Sat Jul 12
> 08:29:30 2014(r32224)
> > > +++ trunk/ompi/contrib/vt/vt/extlib/otf/configure.ac  2014-07-12
> 08:38:15 EDT (Sat, 12 Jul 2014)  (r32225)
> > > @@ -8,7 +8,7 @@
> > > AC_CONFIG_AUX_DIR(config)
> > > AC_CONFIG_MACRO_DIR(config/m4)
> > > AC_CANONICAL_SYSTEM
> > > -AM_INIT_AUTOMAKE([foreign])
> > > +AM_INIT_AUTOMAKE([foreign subdir-objects])
> > > AC_CONFIG_HEADERS([config.h])
> > >
> > > # If Automake supports silent rules, enable them.
> > >
> > > Modified: trunk/opal/mca/event/libevent2021/libevent/configure.ac
> > >
> 

[OMPI devel] Threshold for pinning down user-buffers

2014-05-23 Thread Siddhartha Jana
Hi,
Is my understanding correct?
While servicing MPI_Send  using eager protocol over openib, there is a
data-size threshold below which it is preferred to copy the contents of the
user-buffer to a pre-pinned buffer instead of directly pinning down the
user-buffer. If this is correct, how does one determine this threshold?

As always, thanks for the help
Sid


Re: [OMPI devel] Recommended tool to measure packet counters

2013-12-18 Thread Siddhartha Jana
Ah got it ! Thanks

-- Sid


On 18 December 2013 07:44, Jeff Squyres (jsquyres) <jsquy...@cisco.com>wrote:

> On Dec 14, 2013, at 8:02 AM, Siddhartha Jana <siddharthajan...@gmail.com>
> wrote:
>
> > Is there a preferred method/tool among developers of MPI-library for
> checking the count of the packets transmitted by the network card during
> two-sided communication?
> >
> > Is the use of
> > iptables -I INPUT -i eth0
> > iptables -I OUTPUT -o eth0
> >
> > recommended ?
>
> If you're using an ethernet, non-OS-bypass transport (e.g., TCP), you
> might also want to look at ethtool.
>
> Note that these counts will include control messages sent by Open MPI, too
> -- not just raw MPI traffic.  They also will not include any traffic sent
> across shared memory (or other transports).
>
> --
> Jeff Squyres
> jsquy...@cisco.com
> For corporate legal information go to:
> http://www.cisco.com/web/about/doing_business/legal/cri/
>
> ___
> devel mailing list
> de...@open-mpi.org
> http://www.open-mpi.org/mailman/listinfo.cgi/devel
>


[OMPI devel] Recommended tool to measure packet counters

2013-12-14 Thread Siddhartha Jana
Is there a preferred method/tool among developers of MPI-library for
checking the count of the packets transmitted by the network card during
two-sided communication?

Is the use of
iptables -I INPUT -i eth0
iptables -I OUTPUT -o eth0

recommended ?

Thanks,
Siddhartha