-
Notifications
You must be signed in to change notification settings - Fork 27
/
index.php
104 lines (84 loc) · 2.69 KB
/
index.php
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
<?php
$topdir = ".";
$title = "Open MPI: <br />Open Source High Performance Computing";
include_once("$topdir/includes/header.inc");
include_once("$topdir/includes/news.inc");
function pr($name, $url, $comma) {
print("<a href=\"$url\">$name</a>");
if ($comma) {
print(", ");
}
}
?>
<table width=100% border=0>
<tr>
<td width=80% valign=top>
<h2 align=center>A High Performance Message Passing Library</h2>
<p> The Open MPI Project is an open source <?php
print("<a href=\"http://www.mpi-forum.org/\">"); ?>Message Passing Interface</a>
implementation that is developed and maintained by a consortium of
academic, research, and industry partners. Open MPI is therefore able
to combine the expertise, technologies, and resources from all across
the High Performance Computing community in order to build the best
MPI library available. Open MPI offers advantages for system and
software vendors, application developers and computer science
researchers.
<p>Features implemented or in short-term development for Open MPI
include:</p>
<p>
<table align=center border=0 cellpadding=5>
<tr>
<td valign=top>
<ul>
<li> Full MPI-4.1 standards conformance
<li> Thread safety and concurrency
<li> Dynamic process spawning
<li> Network and process fault tolerance
<li> Support network heterogeneity
<li> Single library supports all networks
<li> Run-time instrumentation
<li> Many job schedulers supported
</ul>
</td>
<td valign=top>
<ul>
<li> Many OS's supported (32 and 64 bit)
<?php #stupid emacs mode: '
?>
<li> Production quality software
<li> High performance on all platforms
<li> Portable and maintainable
<li> Tunable by installers and end-users
<li> Component-based design, documented APIs
<li> Active, responsive mailing list
<li> Open source license based on the BSD license
</ul>
</td>
</tr>
</table>
</p>
<p>Open MPI is developed in a true open source fashion by a consortium
of research, academic, and industry partners. The <a
href="about/members/">Open MPI Team</a> page has a comprehensive
listing of all contributors and active members.</p>
<h3 align=center><a href="faq/">See the FAQ page for more technical
information</a></h3>
<h3 align=center><a href="community/lists/">Join the mailing lists</a></h3>
</td>
<td valign=top>
<?php
news("Open MPI v4.1.7 released",
"Bug fix release",
"https://www.mail-archive.com/[email protected]/msg00171.html");
news("Open MPI v5.0.5 released",
"Major new release",
"https://www.mail-archive.com/[email protected]/msg00170.html");
news("hwloc 2.11.2",
"Stable release",
"https://www.mail-archive.com/[email protected]/msg00169.html");
?>
</td>
</tr>
</table>
<?php
include_once("$topdir/includes/footer.inc");