1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
.. _man1-pmix_info:
pmix_info
=========
.. include_body
pmix_info |mdash| Display information about the PMIx installation
SYNOPSIS
--------
``pmix_info [options]``
DESCRIPTION
-----------
``pmix_info`` provides detailed information about the PMIx
installation. It can be useful for at least three common scenarios:
#. Checking local configuration and seeing how PMIx was installed.
#. Submitting bug reports / help requests to the PMIx community
(see :doc:`Getting help </getting-help>`).
#. Seeing a list of installed PMIx plugins and querying what MCA
parameters they support.
OPTIONS
-------
``pmix_info`` accepts the following options:
* ``-h`` | ``--help <arg0>``: Show help message. If the optional
argument is not provided, then a generalized help message similar
to the information provided here is returned. If an argument is
provided, then a more detailed help message for that specific
command line option is returned.
* ``-v`` | ``--verbose``: Enable debug output.
* ``-V`` | ``--version``: Print version and exit.
* ``-a`` | ``--all``: Show all configuration options and MCA
parameters.
* ``--arch``: Show architecture on which PMIx was compiled.
* ``-c`` | ``--config``: Show configuration options
* ``--hostname``: Show the hostname on which PMIx was configured
and built.
* ``--internal``: Show internal MCA parameters (not meant to be
modified by users).
* ``--param <arg0>:<arg1>,<arg2>``: Show MCA parameters. The first
parameter is the framework (or the keyword "all"); the second parameter
is a comma-delimited list of specific component names (if only <arg0>
is given, then all components will be reported).
* ``--path <type>``: Show paths that PMIx was configured
with. Accepts the following parameters: ``prefix``, ``bindir``,
``libdir``, ``incdir``, ``pkglibdir``, ``sysconfdir``.
* ``--pretty-print``: When used in conjunction with other parameters, the output is
displayed in "prettyprint" format (default)
* ``--parsable``: When used in conjunction with other parameters, the output is
displayed in a machine-parsable format
* ``--parseable``: Synonym for ``--parsable``
* ``--show-failed``: Show the components that failed to load along with the reason why they failed
* ``--selected-only``: Show only variables from selected components.
EXIT STATUS
-----------
Returns 0 if successful, non-zero if an error is encountered
EXAMPLES
--------
Examples of using this command.
Show the default output of options and listing of installed
components in a human-readable / prettyprint format:
.. code-block::
pmix_info
Show the default output of options and listing of installed components
in a machine-parsable format:
.. code-block::
pmix_info --parsable
Show the MCA parameters of the "opa" PNET component in a
human-readable / prettyprint format:
.. code-block::
pmix_info --param pnet opa
Show the "bindir" that PMIx was configured with:
.. code-block::
pmix_info --path bindir
Show the version of PMIx version numbers in a prettyprint format:
.. code-block::
pmix_info --version
Show *all* information about the PMIx installation, including all
components that can be found, all the MCA parameters that they support,
versions of PMIx and the components, etc.:
.. code-block::
pmix_info --all
.. seealso::
:ref:`openpmix(5) <man5-openpmix>`
|