-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgra.html
executable file
·111 lines (102 loc) · 4.23 KB
/
gra.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
<!DOCTYPE html>
<!-- Simple website that will be used to distribute notes
regarding my tutorial in computer architecture @ TUM
Inspired by https://home.in.tum.de/~spechto/-->
<html>
<head>
<title>ladnik</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="css/containers.css" />
<link rel="stylesheet" href="css/elements.css" />
<script src="script.js" async></script>
</head>
<body>
<div class="container-top">
<div class="container-top-left">
<h1>GRA-Tutorium <wbr />SoSe 2024</h1>
</div>
<div class="container-top-right">
<div class="theme-switch" id="dark-mode-toggle">
<label class="switch">
<input type="checkbox">
<span class="slider round"></span>
</label>
</div>
</div>
</div>
<hr />
<span style="font-size: var(--font_text);">
<span style="font-weight: bold;"> Zeitplan/Raum:</span>
Mittwoch 16:00 c.t. im <a href="https://nav.tum.de/room/5613.01.007">MI 01.13.007</a>,
Donnerstag 16:00 c.t. im <a href="https://nav.tum.de/room/5609.03.014">MI 03.09.014</a>
<br />
<span style="font-weight: bold;"> Vertiefungszweig:</span>
Assembly und Performanzoptimierung
</span>
<hr />
<br />
<br />
<div class="container-center">
<div class="container-center-left">
<!-- <h2>📘<span style="text-decoration: underline">Notizen</span></h2> -->
<h2>Notizen</h2>
<div class="link-container">
<table>
<tr>
<td><a href="https://home.in.tum.de/~ladu/stuff/gra/gra_slides_w01.pdf">W01: Einführung in C</a></td>
<td><a href="https://home.in.tum.de/~ladu/stuff/gra/gra_tutor01_clean.pdf">W01: Notizen</a></td>
<td><a href="https://home.in.tum.de/~ladu/stuff/gra/bn_intro.pdf">Setup</a></td>
</tr>
<tr>
<td><a href="https://home.in.tum.de/~ladu/stuff/gra/gra_slides_w02.pdf">W02: Sichere Programmierung und
Nutzereingaben</a></td>
<td><a href="https://home.in.tum.de/~ladu/stuff/gra/w02_code/">W02: Code aus der Übung</a></td>
</tr>
<tr>
<td><a href="https://home.in.tum.de/~ladu/stuff/gra/gra_slides_w03.pdf">W03: C Toolchain</a></td>
</tr>
<tr>
<td><a href="https://home.in.tum.de/~ladu/stuff/gra/gra_slides_w04.pdf">W04: x86 Assembly</a></td>
<td><a href="https://home.in.tum.de/~ladu/stuff/gra/w04_code/">W04: Code aus der Übung</a></td>
</tr>
<tr>
<td><a href="https://home.in.tum.de/~ladu/stuff/gra/gra_slides_w05.pdf">W05: Floating Point und SSE</a></td>
<td><a href="https://home.in.tum.de/~ladu/stuff/gra/w05_code/">W05: Code aus der Übung</a></td>
</tr>
<tr>
<td><a href="https://home.in.tum.de/~ladu/stuff/gra/gra_slides_w06.pdf">W06: SIMD in x86 und C</a></td>
<td><a href="https://home.in.tum.de/~ladu/stuff/gra/w06_code/">W06: Code aus der Übung</a></td>
</tr>
<tr>
<td><a href="https://home.in.tum.de/~ladu/stuff/gra/gra_slides_w07.pdf">W07: Profiling und Benchmarking</a>
</td>
</tr>
</table>
<br />
</div>
<!--<h2>📌 <span style="text-decoration: underline">sonstige Unterlagen</span></h2> -->
<h2>sonstige Unterlagen</h2>
<div class="link-container">
<a href="https://forms.gle/VEEaqKaoeG9wrZ4AA">Feedback in langer Form</a>
<a href="https://forms.gle/qarVBrfcJyFLhgxa8">kurzes Feedback</a>
<a href="https://home.in.tum.de/~ladu/stuff/gra/bn_deck.txt">mein Anki-Deck</a>
<p>
</p>
</div>
</div>
<div class="container-center-right">
<div class="popcat"></div>
</div>
<div style="clear: both"></div>
</div>
<div class="container-bottom">
<a href="era.html" id="sem-navigation">🡐 ERA WiSe 23/24</a>
<a href="https://www.moodle.tum.de/my/" id="moodle">Moodle </a>
<a href="https://github.com/ladnik/tutorSite/issues" id="github">GitHub </a>
<a href="assets/mail" id="mail">Mail </a>
<a href="index.html" id="sem-navigation">ERA WiSe 24/25 🡒</a>
</div>
</body>
</html>