-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomponents.html
More file actions
66 lines (57 loc) · 2.61 KB
/
components.html
File metadata and controls
66 lines (57 loc) · 2.61 KB
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
---
layout: default
---
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>PNNL: Global Arrays Toolkit, Libraries within GA</title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
<meta name="description" content="The Global Arrays (GA) toolkit
provides an efficient and portable "shared-memory"
programming interface for distributed-memory computers." />
<meta name="keywords" content="PNNL, Global Arrays, EMSL" />
</head>
<body>
<div id="page">
{% include shared/header.inc %}
<div id="container">
<div id="main">
<h1>Libraries within GA</h1>
<p>The Global Arrays toolkit consists of many useful and related pieces.</p>
<ul>
<li><a href="../comex">Communication Runtime for Extreme Scale
(ComEx)</a> provides vector and strided interfaces to optimize
performance of remote memory copy operations for non-contiguous data.</li>
<li><a href="pario/index.html">ChemIO aka Parallel IO (pario)</a> is a
package consisting of three independent parallel I/O libraries for
high-performance computers. It was designed for computational chemistry;
however, the supported abstractions and features are general enough to be
of interest to other applications.
<ul>
<li><a href="pario/dra.html">Disk Resident Arrays</a> extend the GA
Non-Uniform Memory Access (NUMA) programming model to disk.</li>
<li><a href="pario/sf/">Shared Files</a> to which multiple processors
can read and write independently.</li>
<li><a href="pario/EAFapi.html">Exclusive Access Files (EAF)</a>
per-processor private files.</li>
</ul>
</li>
<li><a href="ma/index.html">Memory Allocator (MA)</a> is a local memory
manager/allocator with several useful features not available in Fortran or
C languages.</li>
<li><a href="http://hpc.pnl.gov/tascel/">Task Scheduling
Library (tascel)</a></li>
<li><a href="tcgmsg/index.html">TCGMSG</a> is an efficient but limited in
functionality (comparing to MPI) message-passing library available on many
current (and legacy) systems.</li>
<li><a href="tcgmsg-mpi/index.html">TCGMSG-MPI</a> is a portability layer
between TCGMSG and MPI. It is recommended as a transition library from
TCGMSG to MPI for existing TCGMSG codes.</li>
</ul>
</div>
</div>
</div>
</body>
</html>