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

hwloc 2.11.2 final #510

Merged
merged 1 commit into from
Sep 26, 2024
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
4 changes: 2 additions & 2 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ function pr($name, $url, $comma) {
news("Open MPI v4.1.6 released",
"Bug fix release",
"https://www.mail-archive.com/[email protected]/msg00158.html");
news("hwloc 2.11.1",
news("hwloc 2.11.2",
"Stable release",
"https://www.mail-archive.com/[email protected]/msg00167.html");
"https://www.mail-archive.com/[email protected]/msg00169.html");
?>
</td>
</tr>
Expand Down
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion projects/hwloc/doc/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function print_docs($desc, $letterpdf, $a4pdf, $html) {

#########################################################

$versions = array("v2.11.1", "v2.11.0");
$versions = array("v2.11.2", "v2.11.1", "v2.11.0");
$first = 1;
foreach ($versions as $key => $v) {
print_docs("Release $v (stable" . (!$first ? ", old" : "") . ")",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
<dt>FrequencyMaxMHz (Linux) </dt>
<dd>The maximal operating frequency of the core, as reported by <code>cpufreq</code> drivers on Linux. </dd>
<dt>FrequencyBaseMHz (Linux) </dt>
<dd>The base operating frequency of the core, as reported by some <code>cpufreq</code> drivers on Linux (e.g. <code>intel_pstate</code>). </dd>
<dd>The base/nominal operating frequency of the core, as reported by some <code>cpufreq</code> or ACPI drivers on Linux (e.g. <code>cpufreq_cppc</code> or <code>intel_pstate</code>). </dd>
<dt>CoreType (x86) </dt>
<dd>A string describing the kind of core, currently <code>IntelAtom</code> or <code>IntelCore</code>, as reported by the x86 CPUID instruction and Linux PMU on some Intel processors. </dd>
<dt>LinuxCapacity (Linux) </dt>
Expand Down
8 changes: 4 additions & 4 deletions projects/hwloc/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
<div style="float: right; clear: both"><!-- "clear: both" prevents news from going near the float image above -->
<?php
# Lists are not mirrored - use an absolute URL
news("hwloc 2.11.2rc1",
"Stable release candidate",
"https://www.mail-archive.com/[email protected]/msg00168.html");
news("hwloc 2.11.2",
"Stable release",
"https://www.mail-archive.com/[email protected]/msg00169.html");
news("hwloc 2.11.1",
"Stable release",
"https://www.mail-archive.com/[email protected]/msg00167.html");
news("Upgrading to v2.0 API",
"Guide for Porting your Code",
"doc/v2.11.0/a00359.php");
"doc/v2.11.2/a00360.php");
news("XML topology database",
"Repository of XML topologies",
"https://hwloc.gitlabpages.inria.fr/xmls/");
Expand Down
4 changes: 2 additions & 2 deletions software/hwloc/v2.11/version.inc
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ $download_prefix="https://download.open-mpi.org/release/hwloc/v" . $release_seri
$s3_prefix = "release/hwloc/v" . $release_series . "/";

/* releases must be ordered newest to oldest */
$releases = array("2.11.1", "2.11.0");
$releases = array("2.11.2", "2.11.1", "2.11.0");
/* prereleases must be ordered newest to oldest. All prereleases
will be shown, so make an empty array when the official release
is added to releases above */
$prereleases = array("2.11.2rc1");
$prereleases = array();
Loading