-
Notifications
You must be signed in to change notification settings - Fork 859
WeeklyTelcon_20210420
Geoffrey Paulsen edited this page Apr 21, 2021
·
1 revision
- Dialup Info: (Do not post to public mailing list or public wiki)
- Austen Lauria (IBM)
- Brendan Cunningham (Cornelis Networks)
- Brian Barrett (AWS)
- Geoffrey Paulsen (IBM)
- Harumi Kuno (HPE)
- Hessam Mirsadeghi (UCX/nVidia)
- Howard Pritchard (LANL)
- Jeff Squyres (Cisco)
- Joseph Schuchart
- Josh Hursey (IBM)
- Matthew Dosanjh (Sandia)
- Michael Heinz (Cornelis Networks)
- Nathan Hjelm (Google)
- Naughton III, Thomas (ORNL)
- Sam Gutierrez (LLNL)
- Todd Kordenbrock (Sandia)
- William Zhang (AWS)
- Akshay Venkatesh (NVIDIA)
- Artem Polyakov (nVidia/Mellanox)
- Aurelien Bouteiller (UTK)
- Brandon Yates (Intel)
- Charles Shereda (LLNL)
- Christoph Niethammer (HLRS)
- David Bernhold (ORNL)
- Edgar Gabriel (UH)
- Erik Zeiske
- Geoffroy Vallee (ARM)
- George Bosilca (UTK)
- Joshua Ladd (nVidia/Mellanox)
- Marisa Roman (Cornelius)
- Mark Allen (IBM)
- Matias Cabral (Intel)
- Noah Evans (Sandia)
- Raghu Raja (AWS)
- Ralph Castain (Intel)
- Scott Breyer (Sandia?)
- Shintaro iwasaki
- Tomislav Janjusic
- Xin Zhao (nVidia/Mellanox)
- Reminder that Open MPI has a Slack Channel that's useful for communication. Email Jeff for invite.
- What is 8810, why against release branch and not master?
- PR 8823 - PMIx detection is broken
- PR 8769 Blocking issue
- Merged to master, but...
- Merges to Release branches are not trivial
- Follow up 8818 on datatypes
- Is this also blocker?
- OSU with Dynamic window issue 8774
- Not a show stopper, requires options, and presumably some variant of UCX will fix it.
- Is it the same as issue 8212?
- No, 8774 is different and older.
- Raghu has left AWS.
- Brian is stepping up for v4.1.x RM work
- JUST posted v4.1.1rc3 this morning.
- Does not include datatype backport PR 8769 (just in master)
- PSM OFI patch made it in.
- Some fairly sever bugs in v4.1.0 that's fixed in v4.1.x branch now
- race condition on ARM.
- HOW LONG to wait for Datatype fix? We're in Month 2.
- Can always do a v4.1.3 a week later if/when datatype fix comes in.
- Silence means agreement
- Pushing back the alpha build for v5.0.0 from this Friday to NEXT friday.
- Issue 8776 - libevent confusion if running with external 3rd party tools
- PR 8792 - Need to move this over to v5.0.x
- Need to check with Brian if this is relevant on v4.0 or v4.1
- compile with --disable-dlopen, or slurp in all of the plugins.
- 3 line change, should be small work.
- Not a linker error, job just hangs and fails, really might want on v4.0 and v4.1
- PR 8799 - should probably be PRed to v5.0
- Howard's concerned that these package specific for config lookups, into the way that mpicc is linked, (for example cray)
- mpicc --show - shows some long dependencies.
- Just let him know on the ticket.
- Howard will update the ticket.
- Howard's concerned that these package specific for config lookups, into the way that mpicc is linked, (for example cray)
- Docs - Man pages will be included in this effort.
- Likely include nroff and http in the tarball (so users don't need sphynx, and don't need internet)
- If this doesn't make v5.0.0, it can go into later.
- Packagers need some advice, and need a README, few more weeks at minimum.
- 8808 - same memory backing file.
- what is the failure profile for this?
- Rare, but what happens is if two users are sharing a node, and we leave backing files because a job fails, another user tries to create the backing file, it can conflict. So we add user-id to give a little more safety for conflicting.
- Does mean that there's a cleanup issue for shared memory files.
- Only reason is because moved the backing file out of dev/shmem.
- PR 8816
- One issue is LARGE macro formats.
- More readable, or less readable with formatting is subjective.
- there is some tolkens to surrouned
- Always put a trailing comma on struct or array initializers (little things could be improved)
- I wonder if we should optimize for time here?
- Anything that's contriversial, just surround it with these tokens
- Once this is formatted, then we can run clang-tidy, and this can
- Jeff has a CI script to enforce this.
- You can turn this on before.
- Don't want to
- Need to do ompi and oshmem too.
- Not touching 3rd party.
- Large macros in tests (might need that same
- clang-tidy is smaller - pretty small.
- clang-format has to be completely included.
- Some 300 forks of Open-MPI on github.
- Anyone else have long standing branches.
- Worried that we're not making a lot of friends here, that don't really help.
- Code read-ability is important. We have coding standards, but haven't been
- We should have had this convo before we merged into opal.
- Right now we're in this horrible half-state.
- If we jump through this pain, then we can automate it.
- Not going to do clang-format on 3rdParty
- Including ROMIO
- No update
- No update
- Also some changes with libcurl, especially since this breaks OMPI built.
- PMIx can interface with REST interfaces (used by libcurl)
- JSON
- Build system issue in PMIx when we changed to static DSOs.
- Think this has been resolved
- Ralph was looking at this (private messaged Geoff)
- Jeff and Ralph and Yosi had a good conversation *
- rhc has no strong issues either way.
- We prepend LD_LIBRARY_PATH pointing to the PRRTE installation.
- At the moment in OMPI, we overlay this with OMPI library location.
- Seems like the best fix would be to make these two independent.
- PREFIX - enable prefix by default.
- In Open MPI happens to be the same as the OMPI prefix.
- But PRRTE does this by default, because we want the daemons to match the commands.
- OMPI doesn't want to do that. And that's okay
- Instead of --enable prefix-by-default we need --enable mpi-prefix-by-default.
- Looking at it from OMPI perspective
- user asked for prefixing, user wants prefixing... dont care if same or not, just want it to work.
- If user DOESNT want prefixing, then dont want EITHER prefixing.
- But if have a global PRRTE that might want prefixed.
- PRRTE will prefix by default
- What happens when I want MPI libs redirected?
- Problem is if you build PRRTE INTERNAL, then you can't redirect MPI libraries.
- Gotta set PATH and LD_LIBRARY_PATH correctly
- One of those things, --enable-prefix is NOT default in < v4.0
- There are times when want to redirect OMPIs to a different set of libraries.
- right now it's a configure / compile time, which is problematic. have to redo all of the subcomponents.
- What would be nice is if this was at runtime, so that ompi's mpirun can find all of the subcomponents at runtime.
- Setting LD_LIBRARY_PATH is the way to point to another set of libraries.
- This breaks because mpirun will overwrite LD_LIBRARY_PATH.
- Personally Doesn't want this as a default.
- Joseph doesn't want us setting LD_LIBRARY_PATH
- Need to look at the public tests repo for merging in both ULFM and Sessions tests.
- Howard and Geoff will look at this week.
-
OMPI docs and manpages, but persistant problem that mpirun is really prrterun
- PMIx and PRRTE now use pandoc. It'd be bad to require both pandoc and sphynx
- Josh Hursey is wrote this up https://github.com/openpmix/prrte/issues/931, as a means to draw how to man mpirun for Open MPI
-
PR 8329 - convert README, HACKING, and possibly Manpages to restructured text.
- Uses https://www.sphinx-doc.org/en/master/ (Python tool, can pip install)
- Intent this is for v5.0
- mpirun / prrterun - we had quite a bit of details in orte, but are updating as much as possible.
- Ralph has asked about this for PMIx/PRRTE since this is turning out to work
-
No update - 3/16
- Could be independent of PMIx and PRRTE.
- PMIx and PRRTE want to follow suite, and not require both pandoc and sphynx.