-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (56 loc) · 2.75 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>index</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/black.css">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h2> SIMD Algorithms Youtube course</h2>
<ul>
<li><a href="dyaroshev_presentations/simd_stl/00_what_are_we_doing.html">00: what are we doing?</a> </li>
<li><a href="dyaroshev_presentations/simd_stl/01_what_is_vectorization.html">01: what's vectorization?</a> </li>
<li><a href="dyaroshev_presentations/simd_stl/02_strlen_basics.html">02: strlen (basics)</a> </li>
<li><a href="dyaroshev_presentations/simd_stl/03_instructions_behind_strlen.html">03: instructions behind strlen</a></li>
<li><a href="dyaroshev_presentations/simd_stl/04_unrolling_and_simd.html">04: unrolling and simd</a></li>
<li><a href="dyaroshev_presentations/simd_stl/05_strlen_in_cpp.html">05: strlen in c++</a></li>
<li><a href="dyaroshev_presentations/simd_stl/06_auto-vectorization.html">06: auto-vectorization</a></li>
<li><a href="dyaroshev_presentations/simd_stl/07_benchmarking_algos.html">07: benchmarking algorithms</a></li>
<li><a href="dyaroshev_presentations/simd_stl/08_for_each_loop.html">08: for each</a></li>
</ul>
</section>
<section>
<h2> Conference talks</h2>
<ul>
<li><a href="dyaroshev_presentations/conference_talks/my_first_simd_v2.html">My First Simd (v2)</a></li>
<li><a href="dyaroshev_presentations/conference_talks/enough_tmp_to_write_a_variant_2022.html"> Enough TMP to write a variant (2022)</a></li>
<li><a href="dyaroshev_presentations/conference_talks/advanced_simd_algorithms_in_pictures.html"> Advanced SIMD Algorithms in Pictures (2023)</a></li>
<li><a href="dyaroshev_presentations/conference_talks/simd_subsrting_in_a_string.html"> SIMD substring in a string (2025)</a></li>
</ul>
</section>
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
hash: true,
// Learn about plugins: https://revealjs.com/plugins/
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ]
});
</script>
</body>
</html>