-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathfeatures.html
More file actions
88 lines (80 loc) · 4.27 KB
/
features.html
File metadata and controls
88 lines (80 loc) · 4.27 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
<!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 Features - High-performance SIMD programming capabilities">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="css/style.css">
<title>Features - 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 active"><a href="features.html">Features</a></li>
<li class="nav-item"><a href="downloads.html">Downloads</a></li>
<li class="nav-item"><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">
<h1>Features</h1>
<p>The Intel® Implicit SPMD Program Compiler (ispc) provides a number of key features to developers:</p>
<section class="feature-section">
<h3>Familiar C-Based Syntax</h3>
<p><tt class="docutils literal">ispc</tt> supports familiar C syntax and programming idioms, while adding the ability to write SPMD programs. This makes it easy for C/C++ developers to adopt without learning a completely new language.</p>
</section>
<section class="feature-section">
<h3>High-Quality SIMD Code Generation</h3>
<p>The performance of code generated by <tt class="docutils literal">ispc</tt> is often close to that of hand-written intrinsics code, delivering significant performance improvements with much less effort.</p>
</section>
<section class="feature-section">
<h3>Easy Integration</h3>
<p>Functions written in <tt class="docutils literal">ispc</tt> directly interoperate with application functions written in C/C++ and with application data structures, making adoption straightforward.</p>
</section>
<section class="feature-section">
<h3>Cross-Platform CPU Support</h3>
<p><tt class="docutils literal">ispc</tt> has targets for multiple Intel® instruction sets including SSE2, SSE4, AVX, AVX2, and AVX512, providing portability across over a decade of CPU generations.</p>
</section>
<section class="feature-section">
<h3>Operating System Portability</h3>
<p>Microsoft Windows, macOS, and Linux are all supported by <tt class="docutils literal">ispc</tt>, enabling cross-platform development.</p>
</section>
<section class="feature-section">
<h3>Standard Debugging Support</h3>
<p><tt class="docutils literal">ispc</tt> programs can be debugged with standard debuggers. macOS, Linux and Windows are supported (debugging support on Windows is limited).</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>