-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathdocumentation.html
More file actions
113 lines (105 loc) · 5.07 KB
/
documentation.html
File metadata and controls
113 lines (105 loc) · 5.07 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
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
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Intel® ISPC Documentation - Complete guide and resources for the open-source SIMD compiler">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="css/style.css">
<title>Documentation - Intel® Implicit SPMD Program Compiler</title>
</head>
<body>
<div class="container">
<header class="site-header">
<nav class="main-nav">
<div class="nav-brand">
<h1>Intel® ISPC</h1>
</div>
<ul class="nav-menu">
<li class="nav-item"><a href="index.html">Overview</a></li>
<li class="nav-item"><a href="features.html">Features</a></li>
<li class="nav-item"><a href="downloads.html">Downloads</a></li>
<li class="nav-item active"><a href="documentation.html">Documentation</a></li>
<li class="nav-item"><a href="perf.html">Performance</a></li>
<li class="nav-item"><a href="contrib.html">Contributors</a></li>
</ul>
</nav>
</header>
<main class="main-content">
<div class="content-grid">
<article class="content-main">
<section class="documentation-section">
<h1>Documentation</h1>
<p>
There are a number of resources available to learn how to write
programs with <tt class="docutils literal">ispc</tt>.
</p>
</section>
<section class="getting-started-section">
<h2>Getting Started</h2>
<p>To get started with the language, there is
a <a href="example.html">walkthrough of a simple program</a>
written in <tt class="docutils literal">ispc</tt> that highlights some of the main
features and language constructs.</p>
</section>
<section class="guides-section">
<h2>User Guides</h2>
<p>After reading the example, see the <a href="ispc.html">User's
Guide</a>, which provides a complete reference to the language
and standard library, and <a href="ispc_for_xe.html">ISPC for Xe
user's guide</a> for additional information about GPU support.
You may also find that
the <a href="perfguide.html">Performance Guide</a> provides useful
information about getting best results from the system.</p>
</section>
<section class="examples-section">
<h2>Examples</h2>
<p>The <tt class="docutils literal">examples/</tt> directory of the <tt class="docutils literal">ispc</tt>
distribution has approximately ten examples of using the language
to accelerate various computations. All of these have reference
serial C++ implementations, which makes it easy to compare the
differences between <tt class="docutils literal">ispc</tt> and C++ implementations of
various algorithms. (You can also browse this
code <a href="https://github.com/ispc/ispc/tree/main/examples">directly
on github</a>.)</p>
</section>
<section class="research-section">
<h2>Research Paper</h2>
<p>A technical paper
on <tt class="docutils literal">ispc</tt>, <a href="papers/ispc_inpar_2012.pdf">ispc:
A SPMD Compiler for High-Performance CPU Programming</a>, by
Matt Pharr and William R. Mark, has been accepted to
the <a href="https://ieeexplore.ieee.org/xpl/conhome/6330715/proceeding">InPar 2012</a>
conference. This paper describes a number of the design
features and key characteristics of the <tt class="docutils literal">ispc</tt>
implementation.</p>
</section>
<section class="faq-section">
<h2>FAQ</h2>
<p>Finally, there is a growing <a href="faq.html">list of
frequently asked questions (FAQs)</a>.</p>
</section>
</article>
<aside class="sidebar">
<div class="sidebar-section">
<h3>Resources</h3>
<ul class="resource-links">
<li><a href="http://github.com/ispc/ispc">GitHub Repository</a></li>
<li><a href="https://github.com/ispc/ispc/discussions">Community Discussions</a></li>
<li><a href="http://github.com/ispc/ispc/issues">Report Issues</a></li>
<li><a href="https://github.com/orgs/ispc/projects/1">Release Planning</a></li>
<li><a href="https://github.com/ispc/ispc/blob/main/CONTRIBUTING.md">Contributing Guide</a></li>
<li><a href="http://github.com/ispc/ispc/wiki">Documentation Wiki</a></li>
</ul>
</div>
</aside>
</div>
</main>
<footer class="site-footer">
<div class="footer-content">
<p>© <strong>Intel Corporation</strong> | <a href="http://validator.w3.org/check?uri=referer">Valid HTML</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer">Valid CSS</a></p>
</div>
</footer>
</div>
</body>
</html>