File tree Expand file tree Collapse file tree 4 files changed +13
-7
lines changed Expand file tree Collapse file tree 4 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 52
52
autoconf_min_version = f"{ ompi_data ['autoconf_min_version' ]} "
53
53
libtool_min_version = f"{ ompi_data ['libtool_min_version' ]} "
54
54
flex_min_version = f"{ ompi_data ['flex_min_version' ]} "
55
- mpi_standard_version = f"{ ompi_data ['mpi_standard_version' ]} "
56
- mpi_standard_subversion = f"{ ompi_data ['mpi_standard_subversion' ]} "
55
+ mpi_standard_major_version = f"{ ompi_data ['mpi_standard_version' ]} "
56
+ mpi_standard_minor_version = f"{ ompi_data ['mpi_standard_subversion' ]} "
57
57
58
58
# "release" is a sphinx config variable: assign it to the computed
59
59
# Open MPI version number. The ompi_ver string begins with a "v"; the
@@ -219,8 +219,9 @@ def _doit(topdir):
219
219
.. |autoconf_min_version| replace:: { autoconf_min_version }
220
220
.. |libtool_min_version| replace:: { libtool_min_version }
221
221
.. |flex_min_version| replace:: { flex_min_version }
222
- .. |mpi_standard_version| replace:: { mpi_standard_version }
223
- .. |mpi_standard_subversion| replace:: { mpi_standard_subversion }
222
+ .. |mpi_standard_version| replace:: { mpi_standard_major_version } .{ mpi_standard_minor_version }
223
+ .. |mpi_standard_major_version| replace:: { mpi_standard_major_version }
224
+ .. |mpi_standard_minor_version| replace:: { mpi_standard_minor_version }
224
225
.. |deprecated_favor| replace:: this routine is deprecated in favor of
225
226
226
227
"""
Original file line number Diff line number Diff line change @@ -54,8 +54,11 @@ OUTPUT PARAMETERS
54
54
DESCRIPTION
55
55
-----------
56
56
57
- Since Open MPI is MPI-|mpi_standard_version |.|mpi_standard_subversion| compliant, this function will return a
58
- ``version `` value of |mpi_standard_version | and a subversion value of |mpi_standard_subversion | for this release.
57
+ Since Open MPI |ompi_ver | is MPI-|mpi_standard_version | compliant (see
58
+ :ref: `this page for more details about Open MPI standards conformance
59
+ <mpi-standard-conformance-label>`) this function will return a
60
+ ``version `` value of |mpi_standard_major_version | and a ``subversion ``
61
+ value of |mpi_standard_minor_version | for this release.
59
62
60
63
NOTE
61
64
----
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ portable.
24
24
25
25
The outcome, known as the MPI Standard, was first published in 1993; its
26
26
most recent version (MPI-4.0) was published in June 2021. Open MPI
27
- includes all MPI |mpi_standard_version |.|mpi_standard_subversion| -compliant routines.
27
+ includes all MPI |mpi_standard_version |-compliant routines.
28
28
29
29
For more information about Open MPI, see https://www.open-mpi.org.
30
30
Original file line number Diff line number Diff line change 1
1
MPI Functionality and Features
2
2
==============================
3
3
4
+ .. _mpi-standard-conformance-label :
5
+
4
6
MPI Standard conformance
5
7
------------------------
6
8
You can’t perform that action at this time.
0 commit comments