Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: two minor tweaks: #472

Merged
merged 1 commit into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion includes/header.inc
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ printsublink("$topurl/doc/", "Documentation");
printsublink("$topurl/source/", "Source Code Access");
printsublink("https://github.com/open-mpi/ompi/issues", "Bug Tracking");
printsublink("https://mtt.open-mpi.org/", "Regression Testing");
printsublink("https://github.com/open-mpi/ompi/blob/master/README.md#open-mpi-version-numbers-and-binary-compatibility", "Version Information");
printsublink("https://docs.open-mpi.org/en/main/version-numbering.html", "Version Information");

// Sub-Projects
printbutton("Sub-Projects");
Expand Down
25 changes: 16 additions & 9 deletions software/ompi/major-changes.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,25 @@

<!-- ------------------- -->

<li> Open MPI v5.0.x switched from using ORTE to the PRRTE runtime environment.
<li> Open MPI v5.0.x switched from using ORTE to the <a
href="https://prrte.org/">PRRTE runtime environment</a>.

<p> Open MPI 5.0.x adopted PRRTE (PMIx Reference RunTime Environment) as the default runtime environment
management system.<br> PRRTE provides run-time environment infrastructure for environments that do not
natively have them. In practical terms, this typically means providing infrastructure for
non-scheduled environments that have no concept of distributed scheduling, file staging,
remote stdout/stderr redirection, and only have <em>ssh</em> to execute commands on remote nodes.
</p></li>
<p> Open MPI 5.0.x adopted PRRTE (PMIx Reference RunTime Environment)
as the default runtime environment management system.<br>

PRRTE is the evolution of ORTE into an independent project that
provides run-time environment infrastructure for environments that
do not natively have them. In practical terms, this typically means
providing infrastructure for non-scheduled environments that have no
concept of distributed scheduling, file staging, remote
stdout/stderr redirection, and only have <code>ssh</code> to execute
commands on remote nodes. </p></li>

<!-- ------------------- -->

<li>Notable features:</li>
<ul>
<li> Support for MPI Sessions. </li>
<li> Support for MPI-4 Sessions. </li>
<li> ULFM Fault Tolerance support. </li>
<li> CUDA support in <em>OFI</em> MTL. </li>
<li> Added a new <em>Accelerator</em> framework. <br> CUDA-specific code
Expand All @@ -57,10 +62,12 @@
</ol></p>

For the full list of features and updates please refer to
<a href="https://docs.open-mpi.org/en/v5.0.x/news/news-v5.0.x.html">v5.0.x news</a> section.
<a href="https://docs.open-mpi.org/en/v5.0.x/news/news-v5.0.x.html">v5.0.x release notes</a> section.

<!-- =================== -->

<p><hr></p>

<h2>v4.1.x series</h2>

<p>The v4.1.x series introduced the following major feature
Expand Down
17 changes: 13 additions & 4 deletions software/ompi/v5.0/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,24 @@
$list_name = "announce";
$prev_describe = "the v$release_series download page";

$news_url = "https://docs.open-mpi.org/en/v5.0.x/release-notes/";

include_once("$topdir/includes/subscribe-announce.inc");
?>

<p><hr>

<P><?php $dir = "https://docs.open-mpi.org/en/v5.0.x/release-notes/index.html";
print("<a href=\"$dir\">"); ?>This
file</a> contains the release notes for the Open
MPI v<?php print("$release_series"); ?> series.</p>
<h2>Changes in this release:</h2>

<ul>
<li><a href="../major-changes.php">See this page</a> if you are
upgrading from a prior major release series of Open MPI. It shows the
Big Changes for which end users need to be aware.</li>
<li><?php print("<a href=\"$news_url\">"); ?>See the release notes</a>
for a more fine-grained listing of changes between each release and
sub-release of the Open MPI v<?php print($release_series); ?>
series.</li>
</ul>

<p>See the <a href="<?php print($topdir);
?>/software/ompi/versions/timeline.php">version timeline</a> for
Expand Down
Loading