OpenPMIx

Reference Implementation of the Process Management Interface Exascale (PMIx) standard

View the Project on GitHub

Downloads   Privacy Policy   Security Policy   Publications   Community   Contribute

Getting the Code

The PMIx Reference RunTime Environment (PRRTE) Git repository (where most active development is done) is hosted at GitHub. At this time, the PMIx team has not issued any stable point releases of PRRTE. However, this is expected to begin fairly soon. Meantime, there are many useful new features (and bug fixes) on the master branch of the repository, and users sometimes find it advantageous to work from that branch.

Be aware, however, that the head of the development code tree is not guaranteed to be stable. We try very hard to not commit things that are broken, but this is an active development tree — bugs happen. When you find any bugs (and you undoubtedly will), please report them on the issues list. The PMIx community provides public read-only access to the PRRTE Git repository, but please feel free to post pull requests – they are always welcome!

You will need a Git client to obtain the code. We recommend getting the latest version available. If you do not have the command git in your path, you will likely need to download and install Git.

Github provides a simple button for obtaining the clone command. Clone either the master any of the release branches. For example (as of Jan 2018), to clone the main development repository via HTTPS:

    shell$ git clone https://github.com/pmix/prrte
    Cloning into ‘prrte’…
    remote: Counting objects: 394300, done.
    remote: Compressing objects: 100% (61/61), done.
    remote: Total 394300 (delta 35), reused 31 (delta 18), pack-reused 394221
    Receiving objects: 100% (394300/394300), 109.61 MiB | 921.00 KiB/s, done.
    Resolving deltas: 100% (322492/322492), done.
    Checking connectivity… done.
    shell$

Note that Git is natively capable of using many forms of web proxies. If your network setup requires the user of a web proxy, consult the Git documentation for more details.

After obtaining a successful Git clone, the following tools (and associated minimum versions) are required for developers to compile PRRTE from its repository sources:

Critical Note

As of May 29, 2018, PRRTE no longer carries embedded copies of libevent, HWLOC, or PMIx. All three are required for PRRTE to build and operate. Most distributions carry libevent and hwloc packages, and PRRTE is fairly flexible on its version requirements. However, PMIx is not yet as widespread in its availability, and you may find it necessary to download and build it yourself.

Supported versions are shown below. For convenience, we include a link to the project’s web site in case you need (or choose) to install it directly:

Notes

Autotools notes:

NOTE: by default, when configuring and building PRRTE from a developer checkout, all debugging code is enabled. This results in a significant run-time performance penalty. There are several options for building an optimized PRRTE; see the HACKING file for more details.

NOTE: Most Linux distributions and OS X install Flex by default (and this is sufficient). Other operating systems may provide lex, but this is not sufficient — flex is required.

Preparing Autotools

Building PRRTE