lectures.alex.balgavy.eu

Lecture notes from university.
git clone git://git.alex.balgavy.eu/lectures.alex.balgavy.eu.git
Log | Files | Refs | Submodules

commit 599fafc521374365e5bdff7b3a94ba4efa12c59c
parent e7aae3e65086a9736ffba47516ebd3d4dcbb2db2
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Mon,  1 Feb 2021 17:02:49 +0100

Fix JS fuckup

Diffstat:
Mcontent/programming-multi-core-and-many-core-systems/lecture-1.md | 2+-
Mtemplates/base.html | 1+
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/content/programming-multi-core-and-many-core-systems/lecture-1.md b/content/programming-multi-core-and-many-core-systems/lecture-1.md @@ -51,7 +51,7 @@ Organisation principle: parallel supersteps How measure parallel performance? - speedup: $S_{n} = \frac{T_{1}}{T_{n}}$ - T₁: exec time using 1 core -- $𝑇_{𝑛}$: exec time using n cores +- $T_n$: exec time using n cores Parallel program dev process: 1. formulate problem diff --git a/templates/base.html b/templates/base.html @@ -21,6 +21,7 @@ <!-- For browsers supporting prefers-color-scheme, use that --> <link rel="stylesheet" type="text/css" href="/dark.css" media="(prefers-color-scheme: dark)"> <link rel="stylesheet" type="text/css" href="/light.css" media="(prefers-color-scheme: light)"> + {% block scripts %}{% endblock scripts %} </head> <body> {% if config.extra.debug %}