aboutsummaryrefslogtreecommitdiff
path: root/slides/2019-it-intro-computer-systems/img/performance.tex
diff options
context:
space:
mode:
Diffstat (limited to 'slides/2019-it-intro-computer-systems/img/performance.tex')
-rw-r--r--slides/2019-it-intro-computer-systems/img/performance.tex20
1 files changed, 20 insertions, 0 deletions
diff --git a/slides/2019-it-intro-computer-systems/img/performance.tex b/slides/2019-it-intro-computer-systems/img/performance.tex
new file mode 100644
index 0000000..5f4e816
--- /dev/null
+++ b/slides/2019-it-intro-computer-systems/img/performance.tex
@@ -0,0 +1,20 @@
+\begin{tikzpicture}[
+ arrow/.style = {
+ draw,
+ -latex,
+ },
+ plain/.style = {
+ draw=none,
+ }
+]
+ \coordinate(o) at (0,0);
+ \coordinate(y) at (0,4);
+ \coordinate(x) at (6,0);
+
+ \coordinate(c1) at (0.5,0.5);
+ \coordinate(c2) at (5.5,3);
+
+ \path[arrow] (o) -- node[plain, below, pos=0.9]{time} (x);
+ \path[arrow] (o) -- node[plain, above, pos=1]{performance} (y);
+ \path[arrow] (c1) -- (c2);
+\end{tikzpicture}