-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
267 lines (240 loc) · 8.53 KB
/
index.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>The LLVM Compiler Infrastructure in HPC by LLVM-HPC-Workshop</title>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/pygment_trac.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="javascripts/main.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
</head>
<body>
<header>
<h1>The LLVM Compiler Infrastructure in HPC</h1>
<p>Workshop held in conjunction with SC14 - Monday, November 17, 2014 - New Orleans, Louisiana, USA</p>
</header>
<div id="banner">
<span id="logo"></span>
<a href="https://github.com/LLVM-HPC-Workshop" class="button fork"><strong>View On GitHub</strong></a>
</div><!-- end banner -->
<div class="wrapper">
<nav>
<ul></ul>
</nav>
<section>
<h2>
<a id="agenda" class="anchor" href="#agenda" aria-hidden="true"><span class="octicon octicon-link"></span></a>Agenda</h2>
<table>
<thead>
<tr>
<th>Time</th>
<th>Speaker</th>
<th>Title</th>
</tr>
</thead>
<tbody>
<tr>
<td>9:00</td>
<td>Hal Finkel</td>
<td>Welcome</td>
</tr>
<tr>
<td>9:15</td>
<td>Torsten Hoefler</td>
<td>Keynote: <a href="talks.html#hoefler">MPI Datatype Processing using Runtime Compilation</a></td>
</tr>
<tr>
<td>10:00</td>
<td>Coffee</td>
<td>Break</td>
</tr>
<tr>
<td>10:30</td>
<td>Joachim Protze</td>
<td><a href="talks.html#protze">Towards Providing Low-Overhead Data Race Detection for Large OpenMP Applications</a></td>
</tr>
<tr>
<td>11:00</td>
<td>Carlo Bertolli</td>
<td><a href="talks.html#bertolli">Coordinating GPU Threads for OpenMP 4.0 in LLVM</a></td>
</tr>
<tr>
<td>11:30</td>
<td>Michael Haidl</td>
<td><a href="talks.html#haidl">PACXX: Towards a Unified Programming Model for Programming Accelerators using C++14</a></td>
</tr>
<tr>
<td>12:00</td>
<td>N/A</td>
<td>Lunch</td>
</tr>
<tr>
<td>1:30</td>
<td>Chandler Carruth</td>
<td><a href="talks.html#carruth">HPC on the LLVM and C++ Software Stack: It's Not Just About the Compute!</a> [with an extended Q&A period]</td>
</tr>
<tr>
<td>2:30</td>
<td>Eric Anger</td>
<td><a href="talks.html#anger">Architecture-Independent Modeling of Intra-Node Data Movement</a></td>
</tr>
<tr>
<td>3:00</td>
<td>Coffee</td>
<td>Break</td>
</tr>
<tr>
<td>3:30</td>
<td>Diego Novillo</td>
<td><a href="talks.html#novillo">SamplePGO - The Power of Profile Guided Optimizations without the Usability Burden</a></td>
</tr>
<tr>
<td>4:00</td>
<td>Keno Fischer</td>
<td><a href="talks.html#fischer">Julia in the LLVM ecosystem</a></td>
</tr>
<tr>
<td>4:45</td>
<td>Gordon Brown</td>
<td><a href="talks.html#brown">Implementing the OpenCL SYCL Shared Source C++ Programming Model using Clang/LLVM</a></td>
</tr>
<tr>
<td>5:30</td>
<td>The</td>
<td>End</td>
</tr>
</tbody>
</table>
<h2>
<a id="abstract" class="anchor" href="#abstract" aria-hidden="true"><span class="octicon octicon-link"></span></a>Abstract</h2>
<p><a href="http://llvm.org/">LLVM</a>, winner of the <a href="http://awards.acm.org/software_system/">2012 ACM Software System Award</a>, has become an integral part of the software-development ecosystem for optimizing compilers, dynamic-language execution engines, source-code analysis and transformation tools, debuggers and linkers, and a whole host of programming-language and toolchain-related components. Now heavily used in both academia and industry, where it allows for rapid development of production-quality tools, LLVM is increasingly used in work targeted at high-performance computing. Research in and implementation of programming-language analysis, compilation, execution and profiling has clearly benefited from the availability of a high-quality, freely-available infrastructure on which to build. This workshop will focus on recent developments, from both academia and industry, that build on LLVM to advance the state of the art in high-performance computing.</p>
<h2>
<a id="format" class="anchor" href="#format" aria-hidden="true"><span class="octicon octicon-link"></span></a>Format</h2>
<p>This workshop will feature contributed papers, invited talks, and panel discussions focusing on recent developments, from both academia and industry, that build on LLVM to advance the state of the art in high-performance computing.</p>
<p>Topics of interest include, but are not limited to: </p>
<ul>
<li>Compiler design for highly-concurrent/parallel environments</li>
<li>Compilation techniques targeted at high-performance computing codes</li>
<li>Programming-language implementation techniques enabling high performance and high productivity</li>
<li>Embedding compilation and dynamic execution at scale</li>
<li>Tools for optimization, profiling and feedback</li>
<li>Source code transformation and analysis</li>
</ul>
<h2>
<a id="deadlines" class="anchor" href="#deadlines" aria-hidden="true"><span class="octicon octicon-link"></span></a>Deadlines</h2>
<ul>
<li><del>Paper submissions due: September 1, 2014</del></li>
<li><del>Notification to authors of acceptance: October 1, 2014</del></li>
<li><del>Camera-ready papers due: November 1, 2014</del></li>
<li>Workshop takes place: November 17, 2014</li>
</ul>
<p>Please see <a href="http://sc14.supercomputing.org/">the SC14 home page</a> for registration deadlines and other information associated with the parent event.</p>
<h2>
<a id="submissions" class="anchor" href="#submissions" aria-hidden="true"><span class="octicon octicon-link"></span></a>Submissions</h2>
<p>We are using <a href="https://www.easychair.org">EasyChair</a> to manage submissions. Please submit papers to <a href="https://www.easychair.org/conferences/?conf=llvmhpcsc14">llvmhpcsc14</a>. The <a href="http://www.acm.org/sigs/publications/proceedings-templates">ACM SIG Proceedings Templates</a> should be used.</p>
<h2>
<a id="proceedings" class="anchor" href="#proceedings" aria-hidden="true"><span class="octicon octicon-link"></span></a>Proceedings</h2>
<p>The proceedings will be archived in both the ACM Digital Library and IEEE Xplore, by virtue of <a href="http://www.sighpc.org/events/collaboration/scworkshops">SIGHPC</a>.</p>
<p><img src="https://raw.githubusercontent.com/LLVM-HPC-Workshop/LLVM-HPC-Workshop.github.io/master/images/sighpc_logo_72dpi.jpg" alt="SIGHPC Logo"></p>
<h2>
<a id="organizers" class="anchor" href="#organizers" aria-hidden="true"><span class="octicon octicon-link"></span></a>Organizers</h2>
<ul>
<li>Hal Finkel, Argonne National Laboratory</li>
<li>Jeff Hammond, Intel Labs</li>
</ul>
<h2>
<a id="program-committee" class="anchor" href="#program-committee" aria-hidden="true"><span class="octicon octicon-link"></span></a>Program Committee</h2>
<table>
<thead>
<tr>
<th>Name</th>
<th>Affiliation</th>
</tr>
</thead>
<tbody>
<tr>
<td>Chandler Carruth</td>
<td>Google</td>
</tr>
<tr>
<td>Sameer Shende</td>
<td>University of Oregon</td>
</tr>
<tr>
<td>Tobias Grosser</td>
<td>INRIA</td>
</tr>
<tr>
<td>Gary Funck</td>
<td>Intrepid Technology</td>
</tr>
<tr>
<td>Ralf Karrenberg</td>
<td>Weta Digital</td>
</tr>
<tr>
<td>Nadav Rotem</td>
<td>Apple</td>
</tr>
<tr>
<td>Andrew Trick</td>
<td>Apple</td>
</tr>
<tr>
<td>J Nelson Amaral</td>
<td>University of Alberta</td>
</tr>
<tr>
<td>Michael Wong</td>
<td>IBM</td>
</tr>
<tr>
<td>Frank Winter</td>
<td>Thomas Jefferson National Accelerator Facility ("Jefferson Lab")</td>
</tr>
<tr>
<td>Erik Schnetter</td>
<td>Perimeter Institute for Theoretical Physics</td>
</tr>
<tr>
<td>David Tweed</td>
<td>ARM</td>
</tr>
<tr>
<td>Cameron McInally</td>
<td>Cray</td>
</tr>
<tr>
<td>Keno Fischer</td>
<td>Harvard University</td>
</tr>
<tr>
<td>Stefan Karpinski</td>
<td>MIT / Julia</td>
</tr>
<tr>
<td>Michael McCool</td>
<td>Intel</td>
</tr>
<tr>
<td>Torsten Hoefler</td>
<td>ETH Zürich</td>
</tr>
</tbody>
</table>
<h2>
<a id="contact-information" class="anchor" href="#contact-information" aria-hidden="true"><span class="octicon octicon-link"></span></a>Contact Information</h2>
<p>Hal Finkel (<a href="mailto:[email protected]">[email protected]</a>) and/or Jeff Hammond (<a href="mailto:[email protected]">[email protected]</a>)</p>
</section>
<footer>
<p><small>Hosted on GitHub Pages — Theme by <a href="https://twitter.com/michigangraham">mattgraham</a></small></p>
</footer>
</div>
<!--[if !IE]><script>fixScale(document);</script><![endif]-->
</body>
</html>