-
Notifications
You must be signed in to change notification settings - Fork 12
/
documentation.html
112 lines (107 loc) · 4.88 KB
/
documentation.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="stylesheet" href="css/style.css" type="text/css" media="all" />
<!-- WIN IE Style Sheets -->
<!--[if IE]>
<![if gte IE 5.5]>
<![if gte IE 7]><link rel="stylesheet"
type="text/css" media="screen,projection"
href="css/ie.css" />
<![endif]>
<![if lt IE 7]><link rel="stylesheet"
type="text/css" media="screen,projection"
href="css/ie.css" />
<![endif]>
<![endif]>
<![if lt IE 5.5]>
<link rel="stylesheet"
type="text/css" media="screen,projection"
href="css/ie.css" />
<![endif]>
<![endif]-->
<title>Intel® Implicit SPMD Program Compiler</title>
</head>
<body>
<div id="wrap">
<div id="wrap2">
<div id="header">
<h1 id="logo">Intel® Implicit SPMD Program Compiler</h1>
<div id="slogan">An open-source compiler for high-performance SIMD programming on
the CPU and GPU</div>
</div>
<div id="nav">
<div id="nbar">
<ul>
<li><a href="index.html">Overview</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="downloads.html">Downloads</a></li>
<li id="selected"><a href="documentation.html">Documentation</a></li>
<li><a href="perf.html">Performance</a></li>
<li><a href="contrib.html">Contributors</a></li>
</ul>
</div>
</div>
<div id="content-wrap">
<div id="sidebar">
<div class="widgetspace">
<h1>Resources</h1>
<ul class="menu">
<li><a href="http://github.com/ispc/ispc">GitHub page</a></li>
<li><a href="https://github.com/ispc/ispc/discussions">Discussions on GitHub</a></li>
<li><a href="http://github.com/ispc/ispc/issues">Issues on Github</a></li>
<li><a href="https://github.com/orgs/ispc/projects/1">Release planning board</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">Wiki on Github</a></li>
</ul>
</div>
</div>
<div id="content">
<h1>Documentation</h1>
<p>
There are a number of resources available to learn how to write
programs with <tt>ispc</tt>.
</p>
<p>To get started with the language, there is
a <a href="example.html">walkthrough of a simple program</a>
written in <tt>ispc</tt> that highlights some of the main
features and language constructs.</p>
<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>
<p>The <tt>examples/</tt> directory of the <tt>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>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>
<p>A technical paper
on <tt>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>ispc</tt>
implementation.</p>
<p>Finally, there is a growing <a href="faq.html">list of
frequently asked questions (FAQs)</a>.</p>
</div>
</div>
<div class="clearfix"></div>
<div id="footer"> © <strong>Intel Corporation</strong> | Valid <a href="http://validator.w3.org/check?uri=referer">XHTML</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a> | ClearBlue by: <a href="http://www.themebin.com/">ThemeBin</a>
<!-- Please Do Not remove this link, thank u -->
</div>
</div>
<!-- End Wrap2 -->
</div>
<!-- End Wrap -->
</body>
</html>