From e457adf2442cfb3b512c52e6ace53023ba224ff0 Mon Sep 17 00:00:00 2001 From: Trygve Date: Tue, 23 Apr 2024 22:45:40 +0200 Subject: [PATCH] Fixed spelling --- documentation/ER_diagram.gaphor | 2 +- documentation/ER_diagram.svg | 12 ++++-------- documentation/lab5.md | 2 +- 3 files changed, 6 insertions(+), 10 deletions(-) diff --git a/documentation/ER_diagram.gaphor b/documentation/ER_diagram.gaphor index 2d24523..9e18c9d 100644 --- a/documentation/ER_diagram.gaphor +++ b/documentation/ER_diagram.gaphor @@ -113,7 +113,7 @@ -Cells +Cell diff --git a/documentation/ER_diagram.svg b/documentation/ER_diagram.svg index 3fbd84e..33b14ed 100644 --- a/documentation/ER_diagram.svg +++ b/documentation/ER_diagram.svg @@ -35,9 +35,6 @@ - - - @@ -251,11 +248,10 @@ - - - - - + + + + diff --git a/documentation/lab5.md b/documentation/lab5.md index e3c4ae0..304e244 100644 --- a/documentation/lab5.md +++ b/documentation/lab5.md @@ -41,7 +41,7 @@ We need to create destructors to call free on data in HeightMap and cells in Cel \newpage # 34. Parallelization -We are using openMP because we want multiple threads using the same data and the files are small enough to fit into memory (~500mb). To scale it to multiple machines we would use openmp to distrubute seperate iamge tiles to each node. +We are using openMP because we want multiple threads using the same data and the files are small enough to fit into memory (~500mb). To scale it to multiple machines we would use mpi to distrubute seperate iamge tiles to each node. We haven't had time to test the performance and we have only parallelized half of what is possible. But we can see that it is using all the cores. The following code was used for parallelization using openMP, each thread produces one "layer" of the cellmap: ```cpp