Skip to content

Commit

Permalink
reveal.js boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
NValerij committed Aug 11, 2024
1 parent c7234fc commit ad4d225
Show file tree
Hide file tree
Showing 6 changed files with 96 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "slides/reveal.js"]
path = slides/reveal.js
url = https://github.com/hakimel/reveal.js
16 changes: 16 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Python Web server for slides",
"type": "debugpy",
"request": "launch",
"module": "http.server",
"args": [
"8080"
],
"cwd": "${workspaceFolder}/slides",
"console": "integratedTerminal"
}
]
}
47 changes: 47 additions & 0 deletions slides/01_Introduction.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!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>01. Введение в программирование на CUDA.</title>

<link rel="stylesheet" href="./reveal.js/dist/reset.css">
<link rel="stylesheet" href="./reveal.js/dist/reveal.css">
<link rel="stylesheet" href="./reveal.js/dist/theme/white.css" id="theme">

<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="./reveal.js/plugin/highlight/monokai.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-markdown="01_introduction.md"
data-separator="^---\n"
data-charset="utf-8">
</section>
</div>
</div>

<script src="./reveal.js/dist/reveal.js"></script>
<script src="./reveal.js/plugin/notes/notes.js"></script>
<script src="./reveal.js/plugin/markdown/markdown.js"></script>
<script src="./reveal.js/plugin/highlight/highlight.js"></script>
<script src="./reveal.js/plugin/math/math.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
hash: true,
controls: true,
progress: true,
history: true,
center: true,

// Learn about plugins: https://revealjs.com/plugins/
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes, RevealMath.KaTeX ]
});
</script>
</body>
</html>
26 changes: 26 additions & 0 deletions slides/01_introduction.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Введение в многопоточное программирование на CUDA

---

## Коротко о курсе

* Для кого этот курс
* Для …
* А ещё для …
* Что планируем рассказать
* Latency hiding
* Latency hiding
* Latency hiding


---

## Программа курса и лекторы

?

---

## Про задания и отчётность

Нужно что-то решать.
3 changes: 3 additions & 0 deletions slides/local_server.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/bash

python3 -m http.server 8080
1 change: 1 addition & 0 deletions slides/reveal.js
Submodule reveal.js added at 6b8c64

0 comments on commit ad4d225

Please sign in to comment.