-
Notifications
You must be signed in to change notification settings - Fork 0
/
Presentation.tex
271 lines (222 loc) · 7.31 KB
/
Presentation.tex
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
268
269
270
271
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Beamer Presentation
% LaTeX Template
% Version 1.0 (10/11/12)
%
% This template has been downloaded from:
% http://www.LaTeXTemplates.com
%
% License:
% CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/)
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%----------------------------------------------------------------------------------------
% PACKAGES AND THEMES
%----------------------------------------------------------------------------------------
\documentclass{beamer}
\mode<presentation> {
% The Beamer class comes with a number of default slide themes
% which change the colors and layouts of slides. Below this is a list
% of all the themes, uncomment each in turn to see what they look like.
%\usetheme{default}
%\usetheme{AnnArbor}
%\usetheme{Antibes}
%\usetheme{Bergen}
%\usetheme{Berkeley}
%\usetheme{Berlin}
%\usetheme{Boadilla}
%\usetheme{CambridgeUS}
%\usetheme{Copenhagen}
%\usetheme{Darmstadt}
%\usetheme{Dresden}
\usetheme{Frankfurt}
%\usetheme{Goettingen}
%\usetheme{Hannover}
%\usetheme{Ilmenau}
%\usetheme{JuanLesPins}
%\usetheme{Luebeck}
%\usetheme{Madrid}
%\usetheme{Malmoe}
%\usetheme{Marburg}
%\usetheme{Montpellier}
%\usetheme{PaloAlto}
%\usetheme{Pittsburgh}
%\usetheme{Rochester}
%\usetheme{Singapore}
%\usetheme{Szeged}
%\usetheme{Warsaw}
% As well as themes, the Beamer class has a number of color themes
% for any slide theme. Uncomment each of these in turn to see how it
% changes the colors of your current slide theme.
%\usecolortheme{albatross}
%\usecolortheme{beaver}
%\usecolortheme{beetle}
%\usecolortheme{crane}
%\usecolortheme{dolphin}
%\usecolortheme{dove}
%\usecolortheme{fly}
%\usecolortheme{lily}
%\usecolortheme{orchid}
%\usecolortheme{rose}
%\usecolortheme{seagull}
%\usecolortheme{seahorse}
%\usecolortheme{whale}
%\usecolortheme{wolverine}
%\setbeamertemplate{footline} % To remove the footer line in all slides uncomment this line
%\setbeamertemplate{footline}[page number] % To replace the footer line in all slides with a simple slide count uncomment this line
%\setbeamertemplate{navigation symbols}{} % To remove the navigation symbols from the bottom of all slides uncomment this line
}
\usepackage{graphicx} % Allows including images
\usepackage{booktabs} % Allows the use of \toprule, \midrule and \bottomrule in tables
%----------------------------------------------------------------------------------------
% TITLE PAGE
%----------------------------------------------------------------------------------------
\title[Short title]{WIP : Implementation of a double floating point library in GLSL 1.30}
\author{Elie TOURNIER}
\institute[GSoC]
{
Google Summer of Code 2016
\\
Head of the operation: Ian Romanick
\\
\medskip
\textit{[email protected]}
}
\date{\today}
\begin{document}
\begin{frame}
\titlepage % Print the title page as the first slide
\end{frame}
%\begin{frame}
%\frametitle{Overview} % Table of contents slide, comment this block out to remove it
%\tableofcontents % Throughout your presentation, if you choose to use \section{} and \subsection{} commands, these will automatically be printed on this slide as an overview of your presentation
%\end{frame}
%----------------------------------------------------------------------------------------
% PRESENTATION SLIDES
%----------------------------------------------------------------------------------------
%------------------------------------------------
\section{About me} % Sections can be created in order to organize your presentation into discrete blocks, all sections and subsections are automatically printed in the table of contents as an overview of the talk
%------------------------------------------------
\begin{frame}
\frametitle{Who am I?}
\begin{itemize}
\item Elie Tournier
\item Google Summer of Code 2016 Student
\item Graduate Software and Image Processing Engineer
\item Available for hire
\end{itemize}
\end{frame}
%------------------------------------------------
\section{The project}
%------------------------------------------------
\begin{frame}
\frametitle{Goal}
\begin{itemize}
\item Iago Toral bring GL\_ARB\_gpu\_shader\_fp64 to Intel GPUs.
\item A stretch goal would be to create GL\_ARB\_gpu\_shader\_fp64 for GPUs without FP64 hardware support.
\item Create a FP64 support
\end{itemize}
\end{frame}
%------------------------------------------------
\section{The work}
%------------------------------------------------
\begin{frame}
\frametitle{GLSL}
\begin{itemize}
\item The library is written in GLSL.
\item Use GLSL in order to use the graphics pipeline without having to use hardware-specific languages.
\item Can be convert to GLSL IR thanks to the standalone compiler.
\item Like I need to use bitwise operators, GPUs must be GLSL 1.30 (OpenGL 3.0).
\end{itemize}
\end{frame}
%------------------------------------------------
\begin{frame}
\frametitle{Choose a CPU lib}
\begin{itemize}
\item I don't want to reinvent the wheel.
\item Convert a CPU library to a GPU one.
\item Berkeley SoftFloat by John R. Hauser.
\item IEEE 754 compliant.
\end{itemize}
\end{frame}
%------------------------------------------------
\section{The dev}
%------------------------------------------------
\begin{frame}
\frametitle{Dev environment}
\begin{itemize}
\item Code in my GitHub.
\item Use Shader\_runner from Piglit.
\item Debug and test shaders.
\end{itemize}
\end{frame}
%------------------------------------------------
\begin{frame}[fragile] % Need to use the fragile option when verbatim is used in the slide
\frametitle{Store FP64}
\begin{example}[Code Berkley SoftFloat]
\begin{verbatim}
typedef struct {
!!!bits32 high, low;
} float64;
\end{verbatim}
\end{example}
\begin{example}[Code libSoftFloat]
\begin{verbatim}
uvec2 fp64;
\end{verbatim}
\end{example}
\end{frame}
%------------------------------------------------
\begin{frame}[fragile] % Need to use the fragile option when verbatim is used in the slide
\frametitle{Extract FP64 Exp}
\begin{example}[Code Berkley SoftFloat]
\begin{verbatim}
INLINE int16 extractFloat64Exp( float64 a )
{
return ( a.high>>20 ) & 0x7FF;
}
\end{verbatim}
\end{example}
\begin{example}[Code libSoftFloat]
\begin{verbatim}
uint extractFloat64Exp( uvec2 a )
{
return ( a.x>>20 ) & 0x7FFu;
}
\end{verbatim}
\end{example}
\end{frame}
%------------------------------------------------
\section{Plan}
%------------------------------------------------
\begin{frame}
\frametitle{Plan}
\begin{itemize}
\item Finish to implement last FP64 operations.
\item Integrate the lib to Mesa.
\item Implement GL\_ARB\_gpu\_shader\_fp64.
\end{itemize}
\end{frame}
%------------------------------------------------
\section{References}
%------------------------------------------------
\begin{frame}
\frametitle{References}
\footnotesize{
\begin{thebibliography}{99} % Beamer does not support BibTeX so references must be inserted manually as below
\bibitem[Hauser, 2015]{p1} John R. Hauser (2015)
\newblock Berkeley SoftFloat
\newblock U.C. Berkeley.
\newblock http://www.jhauser.us/arithmetic/SoftFloat.html
\bibitem[Tournier, 2016]{p1} Elie Tournier (2016)
\newblock libSoftFloat
\newblock https://github.com/Hopetech/libSoftFloat
\end{thebibliography}
}
\end{frame}
%------------------------------------------------
\begin{frame}
\Huge{\centerline{Thanks.}}
\end{frame}
%----------------------------------------------------------------------------------------
\end{document}