add slide
[libreriscv.git] / simple_v_extension / simple_v_chennai_2018.tex
1 \documentclass[slidestop]{beamer}
2 \usepackage{beamerthemesplit}
3 \usepackage{graphics}
4 \usepackage{pstricks}
5
6 \title{Simple-V RISC-V Extension for Vectorisation and SIMD}
7 \author{Luke Kenneth Casson Leighton}
8
9
10 \begin{document}
11
12 \frame{
13 \begin{center}
14 \huge{Simple-V RISC-V Extension for Vectors and SIMD}\\
15 \vspace{32pt}
16 \Large{Flexible Vectorisation}\\
17 \Large{(aka not so Simple-V?)}\\
18 \vspace{24pt}
19 \Large{[proposed for] Chennai 9th RISC-V Workshop}\\
20 \vspace{24pt}
21 \large{\today}
22 \end{center}
23 }
24
25
26 \frame{\frametitle{Credits and Acknowledgements}
27
28 \begin{itemize}
29 \item The Designers of RISC-V\vspace{15pt}
30 \item The RVV Working Group and contributors\vspace{15pt}
31 \item Jacob Bachmeyer, Xan Phung, Chuanhua Chang and others\vspace{15pt}
32 \item ISA-Dev Group Members\vspace{10pt}
33 \end{itemize}
34 }
35
36
37 \frame{\frametitle{The Simon Sinek lowdown (Why, How, What)}
38
39 \begin{itemize}
40 \item Vectorisation needs to fit an implementor's scope:\\
41 RV32E, Embedded/Mobile, DSP, Servers and more.\vspace{15pt}
42 \item By implicitly marking INT/FP regs as "Vectorised",\\
43 everything else follows from there.\vspace{15pt}
44 \item A Standard Vector "API" with flexibility for implementors:\\
45 choice to optimise for area or performance as desired\vspace{10pt}
46 \end{itemize}
47 }
48
49
50 \frame{\frametitle{Why another Vector Extension?}
51
52 \begin{itemize}
53 \item RVV very heavy-duty (excellent for supercomputing)\vspace{10pt}
54 \item Simple-V abstracts parallelism (based on best of RVV)\vspace{10pt}
55 \item Graded levels: hardware, hybrid or traps\vspace{10pt}
56 \item Even Compressed instructions become vectorised\vspace{10pt}
57 \end{itemize}
58 What Simple-V is not:\vspace{10pt}
59 \begin{itemize}
60 \item A full supercomputer-level Vector Proposal\vspace{10pt}
61 \item A replacement for RVV (designed to be augmented)\vspace{10pt}
62 \end{itemize}
63 }
64
65
66 \frame{\frametitle{Quick refresher on SIMD}
67
68 \begin{itemize}
69 \item SIMD very easy to implement (and very seductive)\vspace{10pt}
70 \item Parallelism is in the ALU\vspace{10pt}
71 \item Zero-to-Negligeable impact for rest of core\vspace{10pt}
72 \end{itemize}
73 Where SIMD Goes Wrong:\vspace{10pt}
74 \begin{itemize}
75 \item See "SIMD instructions considered harmful"
76 https://www.sigarch.org/simd-instructions-considered-harmful
77 \item Corner-cases alone are extremely complex.\\
78 Hardware is easy, but software is hell.
79 \item O($N^{6}$) ISA opcode proliferation!\\
80 opcode, elwidth, veclen, src1-src2-dest hi/lo
81 \end{itemize}
82 }
83
84 \frame{\frametitle{Quick refresher on RVV}
85
86 \begin{itemize}
87 \item Extremely powerful (extensible to 256 registers)\vspace{10pt}
88 \item Supports polymorphism, several datatypes (inc. FP16)\vspace{10pt}
89 \item Requires a separate Register File\vspace{10pt}
90 \item Can be implemented as a separate pipeline\vspace{10pt}
91 \end{itemize}
92 However...\vspace{10pt}
93 \begin{itemize}
94 \item 98 percent opcode duplication with rest of RV (CLIP)
95 \item Extending RVV requires customisation not just of h/w:\\
96 gcc and s/w also need customisation (and maintenance)
97 \end{itemize}
98 }
99
100
101 \frame{\frametitle{How is Parallelism abstracted?}
102
103 \begin{itemize}
104 \item Almost all opcodes removed in favour of implicit "typing"\vspace{10pt}
105 \item Primarily at the Instruction issue phase (except SIMD)\vspace{10pt}
106 \item Standard (and future, and custom) opcodes now parallel\vspace{10pt}
107 \end{itemize}
108 Notes:\vspace{10pt}
109 \begin{itemize}
110 \item LOAD/STORE (inc. C.LD and C.ST, LDX: everything)
111 \item All ALU ops (soft / hybrid / full HW, on per-op basis)
112 \item All branches become predication targets (C.FNE added)
113 \item C.MV of particular interest (s/v, v/v, v/s)
114 \end{itemize}
115 }
116
117
118 \frame{\frametitle{Implementation Options}
119
120 \begin{itemize}
121 \item Absolute minimum: Exceptions (if CSRs indicate "V", trap)\vspace{10pt}
122 \item Hardware loop, single-instruction issue\vspace{10pt}
123 \item Hardware loop, parallel (multi-instruction) issue\vspace{10pt}
124 \item Hardware loop, full parallel ALU (not recommended)\vspace{10pt}
125 \end{itemize}
126 Notes:\vspace{10pt}
127 \begin{itemize}
128 \item 4 (or more?) options above may be deployed on per-op basis
129 \item Minimum MVL MUST be sufficient to cover regfile LD/ST
130 \item OoO may split off 4+ single-instructions at a time
131 \end{itemize}
132 }
133
134
135 \frame{\frametitle{How are SIMD Instructions Vectorised?}
136
137 \begin{itemize}
138 \item SIMD ALU(s) primarily unchanged\vspace{10pt}
139 \item Predication is added to each SIMD element (NO ZEROING!)\vspace{10pt}
140 \item End of Vector enables predication (NO ZEROING!)\vspace{10pt}
141 \end{itemize}
142 Considerations:\vspace{10pt}
143 \begin{itemize}
144 \item Many SIMD ALUs possible (parallel execution)\vspace{10pt}
145 \item Very long SIMD ALUs could waste die area (short vectors)\vspace{10pt}
146 \item Implementor free to choose (API remains the same)\vspace{10pt}
147 \end{itemize}
148 }
149 % With multiple SIMD ALUs at for example 32-bit wide they can be used
150 % to either issue 64-bit or 128-bit or 256-bit wide SIMD operations
151 % or they can be used to cover several operations on totally different
152 % vectors / registers.
153
154 \frame{\frametitle{What's the deal / juice / score?}
155
156 \begin{itemize}
157 \item Standard Register File(s) overloaded with "vector span"\vspace{10pt}
158 \item Element width and type concepts remain same as RVV\vspace{10pt}
159 \item CSRs are key-value tables (overlaps allowed)\vspace{10pt}
160 \end{itemize}
161 Key differences from RVV:\vspace{10pt}
162 \begin{itemize}
163 \item Predication in INT regs as a BIT field (max VL=XLEN)\vspace{10pt}
164 \item Minimum VL must be Num Regs - 1 (all regs single LD/ST)\vspace{10pt}
165 \item NO ZEROING: non-predicated elements are skipped\vspace{10pt}
166 \end{itemize}
167 }
168
169
170 \frame{\frametitle{Why are overlaps allowed in Regfiles?}
171
172 \begin{itemize}
173 \item Same register(s) can have multiple "interpretations"\vspace{10pt}
174 \item xBitManip plus SIMD plus xBitManip = Hi/Lo bitops\vspace{10pt}
175 \item (32-bit GREV plus 4-wide 32-bit SIMD plus 32-bit GREV)\vspace{10pt}
176 \item Same register(s) can be offset (no need for VSLIDE)\vspace{10pt}
177 \end{itemize}
178 Note:\vspace{10pt}
179 \begin{itemize}
180 \item xBitManip reduces O($N^{6}$) SIMD down to O($N^{3}$) \vspace{10pt}
181 \item Hi-Performance: Macro-op fusion (more pipeline stages?)\vspace{10pt}
182 \end{itemize}
183 }
184
185
186 \frame{\frametitle{Why no Zeroing (place zeros in non-predicated elements)?}
187
188 \begin{itemize}
189 \item Zeroing is an implementation optimisation favouring OoO\vspace{8pt}
190 \item Simple implementations may skip non-predicated operations\vspace{8pt}
191 \item Simple implementations explicitly have to destroy data\vspace{8pt}
192 \item Complex implementations may use reg-renames to save power\\
193 Zeroing on predication chains makes optimisation harder
194 \end{itemize}
195 Considerations:\vspace{10pt}
196 \begin{itemize}
197 \item Complex not really impacted, Simple impacted a LOT
198 \item Overlapping "Vectors" may issue overlapping ops
199 \item Please don't use Vectors for "security" (use Sec-Ext)
200 \end{itemize}
201 }
202 % with overlapping "vectors" - bearing in mind that "vectors" are
203 % just a remap onto the standard register file, if the top bits of
204 % predication are zero, and there happens to be a second vector
205 % that uses some of the same register file that happens to be
206 % predicated out, the second vector op may be issued *at the same time*
207 % if there are available parallel ALUs to do so.
208
209
210 \frame{\frametitle{Predication key-value CSR store}
211
212 \begin{itemize}
213 \item key is int regfile number or FP regfile number (1 bit)\vspace{10pt}
214 \item register to be predicated if referred to (5 bits, key)\vspace{10pt}
215 \item register to store actual predication in (5 bits, value)\vspace{10pt}
216 \item predication is inverted (1 bit)\vspace{10pt}
217 \end{itemize}
218 Notes:\vspace{10pt}
219 \begin{itemize}
220 \item Table should be expanded out for high-speed implementations
221 \item Multiple "keys" (and values) theoretically permitted
222 \item RVV rules about deleting higher-indexed CSRs followed
223 \end{itemize}
224 }
225
226
227 \begin{frame}[fragile]
228 \frametitle{ADD pseudocode (or trap, or actual hardware loop)}
229
230 \begin{semiverbatim}
231 function op_add(rd, rs1, rs2, predr) # add not VADD!
232  int i, id=0, irs1=0, irs2=0;
233  for (i=0; i < MIN(VL, vectorlen[rd]); i++)
234   if (ireg[predr] & 1<<i) # predication uses intregs
235    ireg[rd+id] <= ireg[rs1+irs1] + ireg[rs2+irs2];
236 if (reg_is_vectorised[rd]) \{ id += 1; \}
237 if (reg_is_vectorised[rs1]) \{ irs1 += 1; \}
238 if (reg_is_vectorised[rs2]) \{ irs2 += 1; \}
239 \end{semiverbatim}
240
241 \begin{itemize}
242 \item SIMD slightly more complex (case above is elwidth = default)
243 \item Scalar-scalar and scalar-vector and vector-vector now all in one
244 \item OoO may choose to push ADDs into instr. queue (v. busy!)
245 \end{itemize}
246 \end{frame}
247
248 \begin{frame}[fragile]
249 \frametitle{Predication-Branch (or trap, or actual hardware loop)}
250
251 \begin{semiverbatim}
252 s1 = vectorlen[src1] > 1;
253 s2 = vectorlen[src2] > 1;
254 for (int i = 0; i < VL; ++i)
255 preg[rs3] |= 1 << cmp(s1 ? reg[src1+i] : reg[src1],
256 s2 ? reg[src2+i] : reg[src2]);
257 \end{semiverbatim}
258
259 \begin{itemize}
260 \item SIMD slightly more complex (case above is elwidth = default)
261 \item If s1 and s2 both scalars, Standard branch occurs
262 \item Predication stored in integer regfile as a bitfield
263 \item Scalar-vector and vector-vector supported
264 \end{itemize}
265 \end{frame}
266
267 \begin{frame}[fragile]
268 \frametitle{LD/LD.S/LD.X (or trap, or actual hardware loop)}
269
270 \begin{semiverbatim}
271 if (unit-strided) stride = elsize;
272 else stride = areg[as2]; // constant-strided
273 for (int i = 0; i < VL; ++i)
274 if (preg_enabled[rd] && ([!]preg[rd] & 1<<i))
275 for (int j = 0; j < seglen+1; j++)
276 if (vectorised[rs2]) offs = vreg[rs2][i]
277 else offs = i*(seglen+1)*stride;
278 vreg[rd+j][i] = mem[sreg[base] + offs + j*stride]
279 \end{semiverbatim}
280
281 \begin{itemize}
282 \item Again: SIMD slightly more complex
283 \item rs2 vectorised taken to implicitly indicate LD.X
284 \end{itemize}
285 \end{frame}
286
287
288 \frame{\frametitle{Opcodes, compared to RVV}
289
290 \begin{itemize}
291 \item All integer and FP opcodes all removed (no CLIP!)\vspace{8pt}
292 \item VMPOP, VFIRST etc. all removed (use xBitManip)\vspace{8pt}
293 \item VSLIDE removed (use regfile overlaps)\vspace{8pt}
294 \item C.MV covers VEXTRACT VINSERT and VSPLAT (and more)\vspace{8pt}
295 \item VSETVL, VGETVL, VSELECT stay\vspace{8pt}
296 \item Issue: VCLIP is not in RV* (add with custom ext?)\vspace{8pt}
297 \item Vector (or scalar-vector) use C.MV (MV is a pseudo-op)\vspace{8pt}
298 \item VMERGE: twin predicated C.MVs (one inverted. macro-op'd)\vspace{8pt}
299 \end{itemize}
300 }
301
302
303 \frame{\frametitle{Under consideration}
304
305 \begin{itemize}
306 \item Can VSELECT be removed? (it's really complex)\vspace{10pt}
307 \item Can CLIP be done as a CSR (mode, like elwidth)\vspace{10pt}
308 \item SIMD saturation (etc.) also set as a mode?\vspace{10pt}
309 \item 8/16-bit ops is it worthwhile adding a "start offset"? \\
310 (a bit like misaligned addressing... for registers)\\
311 or just use predication to skip start?\vspace{10pt}
312 \end{itemize}
313 }
314
315
316 \frame{\frametitle{Summary}
317
318 \begin{itemize}
319 \item Designed for simplicity (graded levels of complexity)\vspace{10pt}
320 \item Fits RISC-V ethos: do more with less\vspace{10pt}
321 \item Reduces SIMD ISA proliferation by 3-4 orders of magnitude \\
322 (without SIMD downsides or sacrificing speed trade-off)\vspace{10pt}
323 \item Covers 98\% of RVV, allows RVV to fit "on top"\vspace{10pt}
324 \item Huge range of implementor freedom and flexibility\vspace{10pt}
325 \item Not designed for supercomputing (that's RVV), designed for
326 in between: DSPs, RV32E, Embedded 3D GPUs etc.\vspace{10pt}
327 \end{itemize}
328 }
329
330
331 \frame{\frametitle{slide}
332
333 \begin{itemize}
334 \item \vspace{10pt}
335 \end{itemize}
336 Considerations:\vspace{10pt}
337 \begin{itemize}
338 \item \vspace{10pt}
339 \end{itemize}
340 }
341
342
343 \frame{\frametitle{Including a plot}
344 \begin{center}
345 % \includegraphics[height=2in]{dental.ps}\\
346 {\bf \red Dental trajectories for 27 children:}
347 \end{center}
348 }
349
350 \frame{\frametitle{Creating .pdf slides in WinEdt}
351
352 \begin{itemize}
353 \item LaTeX [Shift-Control-L]\vspace{10pt}
354 \item dvi2pdf [click the button]\vspace{24pt}
355 \end{itemize}
356 To print 4 slides per page in acrobat click\vspace{10pt}
357 \begin{itemize}
358 \item File/print/properties\vspace{10pt}
359 \item Change ``pages per sheet'' to 4\vspace{10pt}
360 \end{itemize}
361 }
362
363 \frame{
364 \begin{center}
365 {\Huge \red The end}
366 \end{center}
367 }
368
369
370 \end{document}