-
Notifications
You must be signed in to change notification settings - Fork 3
/
users-guide.html
89 lines (84 loc) · 4.54 KB
/
users-guide.html
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
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta name="generator" content="pandoc">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="/style.css">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Raleway:600,800|Open+Sans">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="https://use.fontawesome.com/c754f00c7e.js"></script>
<!-- <script src="https://cdn.polyfill.io/v2/polyfill.min.js"></script> -->
<title>Accelerate: Documentation</title>
<style type="text/css">code{white-space: pre;}</style>
</head>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/index.html" style="font-family: 'Raleway'; font-weight: 600;">AccelerateHS</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="/get-started.html">Get Started</a></li>
<li class="active"><a href="/documentation.html">Documentation</a></li>
<li><a href="/libraries.html">Libraries</a></li>
<li><a href="/examples.html">Examples</a></li>
<li><a href="/community.html">Community</a></li>
<li><a href="/publications.html">Publications</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="https://github.com/AccelerateHS/accelerate"><i class="fa fa-github fa-lg" aria-hidden="true"></i></a></li>
<li><a href="http://groups.google.com/group/accelerate-haskell"><i class="fa fa-envelope-o fa-lg" aria-hidden="true"></i></a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<body>
<div class="container">
<div class="row">
<div class="container">
<ol class="breadcrumb">
<li class="active">
Users Guide
</li>
</ol>
<h1 id="users-guide">Users Guide</h1>
<p>Welcome to the <em>Accelerate</em> User's guide. Accelerate is an embedded language and compiler for a parallel array-based programming language suitable for a variety of modern architectures including shared-memory multicore CPU systems and GPUs.</p>
<h2 id="contents">Contents</h2>
<ul>
<li><p><a href="/documentation/users-guide/language.html">The <em>Accelerate</em> language</a></p>
<ul>
<li><p><a href="/documentation/users-guide/language.html#embedded-array-computations">Embedded array computations</a></p></li>
<li><p><a href="/documentation/users-guide/language.html#embedded-scalar-operations">Embedded scalar operations</a></p></li>
<li><p><a href="/documentation/users-guide/language.html#arrays">Arrays</a></p>
<ul>
<li><p><a href="/documentation/users-guide/language.html#array-elements">Array elements</a></p></li>
<li><p><a href="/documentation/users-guide/language.html#array-shapes-indices">Array shapes & indices</a></p></li>
</ul></li>
</ul></li>
<li><p>Foreign Function Interface (FFI)</p></li>
</ul>
</div>
</div>
</div>
<footer class="footer">
<div class="container text-center">
<p class="text-muted">
<a href="https://github.com/AccelerateHS/accelerate">GitHub Project</a> ·
<a href="https://github.com/AccelerateHS/accelerate/issues">Issue Tracker</a> ·
<a href="http://groups.google.com/group/accelerate-haskell">Mailing List</a>
</p>
</div>
</footer>
</body>
</html>