Skip to content
Snippets Groups Projects
Commit ed6f0d1f authored by Michaël El Kharroubi's avatar Michaël El Kharroubi :satellite:
Browse files

Add skeleton for the whole course

parent c720c038
Branches
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@
caption: [NVIDIA CUDA Programming Guide version 3.0 - 2010],
)
#link("https://youtu.be/-P28LKWTzrI")[Partenariat Myth Busters & NVidia]
#link("https://youtu.be/-P28LKWTzrI")[Partenariat Myth Busters & Nvidia]
]
#new-section-slide("La programmation sur GPU")
......@@ -77,7 +77,7 @@
plus populaire de développement GPGPU.
CUDA permet d'écrire du code en C/C++ et de le compiler pour qu'il soit exécuté
sur des GPU de NVidia.
sur des GPU de Nvidia.
Dans la concurrence, on peut également citer OpenCL (multi-plateforme), ROCm
pour AMD ou OneAPI pour Intel.
......
// https://polylux.dev/book/polylux.html
// https://typst.app/docs
#import "@preview/polylux:0.3.1": *
#import themes.metropolis : *
#show: metropolis-theme.with(aspect-ratio: "16-9", footer: "Parallel STL - HPC 2024")
#set text(font: "Fira Sans", weight: "light", size: 20pt)
#show math.equation: set text(font: "Fira Math")
#title-slide(
title: "Algorithmes parallèles STL avec C++ 20",
subtitle: "GPGPU avec les algorithmes STL",
author: "Michaël El Kharroubi",
date: "27.02.2024",
extra: "HPC 2024 - HEPIA",
)
#new-section-slide("Introduction")
#slide(title: "Contenu")[
]
#new-section-slide("Le SDK HPC de Nvidia")
#slide(title: "Le compilateur nvc++")[
]
#new-section-slide("Exemple de parallélisation sur GPU")
#new-section-slide("Comment passer des données au GPU avec les captures")
#new-section-slide("Le futur avec C++23 (views et mdspans)")
#new-section-slide("Questions ?")
\ No newline at end of file
// https://polylux.dev/book/polylux.html
// https://typst.app/docs
#import "@preview/polylux:0.3.1": *
#import themes.metropolis : *
#show: metropolis-theme.with(aspect-ratio: "16-9", footer: "Parallel STL - HPC 2024")
#set text(font: "Fira Sans", weight: "light", size: 20pt)
#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",
author: "Michaël El Kharroubi",
date: "27.02.2024",
extra: "HPC 2024 - HEPIA",
)
#new-section-slide("Introduction")
#slide(title: "Contenu")[
]
#new-section-slide("Itérateurs")
#new-section-slide("Vecteurs")
#new-section-slide("Tableaux et Spans")
#new-section-slide("Closures")
#new-section-slide("Algorithmes STL")
#new-section-slide("Questions ?")
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment