From ca2da51f4629239e311e8a6338c9f405110b6ffe Mon Sep 17 00:00:00 2001
From: Claudia Frauen <frauen@dkrz.de>
Date: Sun, 2 Jun 2024 16:00:48 +0200
Subject: [PATCH] Added link to OpenMP documention on reductions

---
 lectures/parallelism/slides.qmd | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/lectures/parallelism/slides.qmd b/lectures/parallelism/slides.qmd
index 99365a3..12b44d4 100644
--- a/lectures/parallelism/slides.qmd
+++ b/lectures/parallelism/slides.qmd
@@ -216,6 +216,9 @@ Starting with batter for $N$ pancakes and 1 pan, we can scale by using $P$ pans
     for (int i = 0; i < N; ++i)
         sum = sum + a[i];
 ```
+For other reduction operations see
+[OpenMP documentation](https://www.openmp.org/spec-html/5.1/openmpsu117.html#x152-1720002.21.5)
+
 
 # Doing stuff wrong
 ## What is going wrong here?
-- 
GitLab