From 064f15095685d8a0fb5f7bf90281cd7e18bbacd1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?El=20Kharroubi=20Micha=C3=ABl?=
 <michael.el-kharroubi@hesge.ch>
Date: Tue, 27 Feb 2024 11:50:44 +0100
Subject: [PATCH] Swap titles and subtitles for readability

---
 GPGPU.typ              |  4 ++--
 Nvidia_STL.typ         |  4 ++--
 cpp_basics_for_STL.typ |  4 ++--
 intro.typ              | 10 ++--------
 summary.typ            | 15 ---------------
 5 files changed, 8 insertions(+), 29 deletions(-)
 delete mode 100644 summary.typ

diff --git a/GPGPU.typ b/GPGPU.typ
index 9b60830..52288f0 100644
--- a/GPGPU.typ
+++ b/GPGPU.typ
@@ -9,8 +9,8 @@
 #show math.equation: set text(font: "Fira Math")
 
 #title-slide(
-  title: "Algorithmes parallèles STL avec C++ 20",
-  subtitle: "GPGPU",
+  subtitle: "Algorithmes parallèles STL avec C++ 20",
+  title: "GPGPU",
   author: "Michaël El Kharroubi",
   date: "27.02.2024",
   extra: "HPC 2024 - HEPIA",
diff --git a/Nvidia_STL.typ b/Nvidia_STL.typ
index a75f8ae..0c99118 100644
--- a/Nvidia_STL.typ
+++ b/Nvidia_STL.typ
@@ -9,8 +9,8 @@
 #show math.equation: set text(font: "Fira Math")
 
 #title-slide(
-  title: "Algorithmes parallèles STL avec C++ 20",
-  subtitle: "GPGPU avec les algorithmes STL",
+  subtitle: "Algorithmes parallèles STL avec C++ 20",
+  title: "GPGPU avec les algorithmes STL",
   author: "Michaël El Kharroubi",
   date: "27.02.2024",
   extra: "HPC 2024 - HEPIA",
diff --git a/cpp_basics_for_STL.typ b/cpp_basics_for_STL.typ
index 203fc31..9962388 100644
--- a/cpp_basics_for_STL.typ
+++ b/cpp_basics_for_STL.typ
@@ -9,8 +9,8 @@
 #show math.equation: set text(font: "Fira Math")
 
 #title-slide(
-  title: "Algorithmes parallèles STL avec C++ 20",
-  subtitle: "Notions C++ de bases pour les algorithmes STL",
+  subtitle: "Algorithmes parallèles STL avec C++ 20",
+  title: "Notions C++ de bases pour les algorithmes STL",
   author: "Michaël El Kharroubi",
   date: "27.02.2024",
   extra: "HPC 2024 - HEPIA",
diff --git a/intro.typ b/intro.typ
index b07d69b..0ae7ec3 100644
--- a/intro.typ
+++ b/intro.typ
@@ -9,19 +9,13 @@
 #show math.equation: set text(font: "Fira Math")
 
 #title-slide(
-  title: "Algorithmes parallèles STL avec C++ 20",
-  subtitle: "Introduction",
+  subtitle: "Algorithmes parallèles STL avec C++ 20",
+  title: "Introduction",
   author: "Michaël El Kharroubi",
   date: "27.02.2024",
   extra: "HPC 2024 - HEPIA",
 )
 
-//#slide(title: "Table des matières")[
-//  #metropolis-outline
-//]
-
-#new-section-slide("Introduction")
-
 #slide(
   title: "Objectif du cours",
 )[
diff --git a/summary.typ b/summary.typ
deleted file mode 100644
index 9ff38fb..0000000
--- a/summary.typ
+++ /dev/null
@@ -1,15 +0,0 @@
-#set text(font: "Fira Sans", weight: "light", size: 14pt)
-
-= Summary
-
-Notions à voir pour ce cours :
-
-+ Qu'est-ce qu'un itérateur en C++
-+ Les vecteurs, les arrays et les spans
-+ Les views en C++
-+ Les captures (\~lambda) en C++
-+ Présentation des algorithmes STL
-+ La gestion de la mémoire en programmation GPGPU
-+ Exemple de programmation GPGPU à _l'ancienne_
-+ Le compilateur
-+ Présentation du paradigme futur STL (mdspan, views)
\ No newline at end of file
-- 
GitLab