generated from yandexdataschool/sphinx-lesson-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Введение в многопоточное программирование на CUDA | ||
|
||
--- | ||
|
||
## Коротко о курсе | ||
|
||
* Для кого этот курс | ||
* Для … | ||
* А ещё для … | ||
* Что планируем рассказать | ||
* Latency hiding | ||
* Latency hiding | ||
* Latency hiding | ||
|
||
|
||
--- | ||
|
||
## Программа курса и лекторы | ||
|
||
? | ||
|
||
--- | ||
|
||
## Про задания и отчётность | ||
|
||
Нужно что-то решать. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/bash | ||
|
||
python3 -m http.server 8080 |