diff --git a/.DS_Store b/.DS_Store index e729e2f..c42e5a7 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/code/.DS_Store b/code/.DS_Store index a2782b3..c6ff960 100755 Binary files a/code/.DS_Store and b/code/.DS_Store differ diff --git a/lectures/12_combining_MPI_and_OpenMP.html b/lectures/12_combining_MPI_and_OpenMP.html index 24f3d04..eea95e5 100644 --- a/lectures/12_combining_MPI_and_OpenMP.html +++ b/lectures/12_combining_MPI_and_OpenMP.html @@ -27,18 +27,18 @@
-

Combining MPI and OpenMP

Dr Carey Pridgeon

Created: 2021-11-12 Fri 13:37

+

Combining MPI and OpenMP

Dr Carey Pridgeon

Created: 2022-02-03 Thu 13:42

-

Combining MPI and OpenMP

-
+

Combining MPI and OpenMP

+
-

+

  • While MPI could be used as a parallelism library, it isn't a particularly efficient one.
  • @@ -55,7 +55,7 @@ the nodes properly.
-

+

  • On this module I've only covered OpenMP in any detail, but any parallelism library would work in combination with MPI.
  • @@ -71,7 +71,7 @@ computational time.
-

+

  • There's no inherent advantage, in terms of speed alone, between OpenMP and TBB, as they both falter at the same number of cores due to the inter core @@ -89,12 +89,12 @@ nature.
-

+

  • To integrate any Parallelism library, or a Concurrency library if you wanted to doesn't take anything like the detail you might think.
  • To continue, open the source code in -code/distributed/demonstration_code/mpi_omp and we'll go through this +code/distributed/demonstration_code/OpenMP_and_MPI and we'll go through this example program together.
@@ -109,9 +109,9 @@ example program together.
-

Obligatory XKCD

+

Obligatory XKCD

-
+

multi.png

diff --git a/lectures/12_combining_MPI_and_OpenMP.org b/lectures/12_combining_MPI_and_OpenMP.org index 54f6202..d9b3f45 100755 --- a/lectures/12_combining_MPI_and_OpenMP.org +++ b/lectures/12_combining_MPI_and_OpenMP.org @@ -53,7 +53,7 @@ - To integrate any Parallelism library, or a Concurrency library if you wanted to doesn't take anything like the detail you might think. - To continue, open the source code in - *code/distributed/demonstration_code/mpi_omp* and we'll go through this + *code/distributed/demonstration_code/OpenMP_and_MPI* and we'll go through this example program together.