From edab7d69f8ac91f39c55e3cdc57cee7763d44ca6 Mon Sep 17 00:00:00 2001
From: "baptiste.coudray" <baptiste.coudray@etu.hesge.ch>
Date: Wed, 18 Aug 2021 08:53:40 +0200
Subject: [PATCH] Updated doc

---
 src/figs/distributed_systems.graffle   | Bin 243014 -> 243014 bytes
 src/text/03-programmation-parallele.md |   2 +-
 src/text/05-futhark.md                 |  10 +---------
 3 files changed, 2 insertions(+), 10 deletions(-)

diff --git a/src/figs/distributed_systems.graffle b/src/figs/distributed_systems.graffle
index 70d2c82d9276da13979389a9391ee15617388796..50ee53542f7dcfea908ce3f97a63cd29b550d9ff 100644
GIT binary patch
delta 225
zcmX^1itpGfKAr$?W)=|!1_llW*Y1ft*-SvPvJ6Ci%mtE@6BtuK)G<bo*kn7V8X(oY
zhiUsBCdOYEf$Zr!t}v#9XvM3HNg%rQDq|^-ZvS(Yar>XEO!6Ro+hu*2kEMcSpKfFZ
z$xe^i#B2tlr$Fg5o0u&@eD=){aeF9T4yD&`X0`yyzl8D?w?NcILg|T6`XrQQ+{)|<
E05b4V`Tzg`

delta 225
zcmX^1itpGfKAr$?W)=|!1_lm>2`v+OvYCKnWf_S4m<uE)CorafsAG&EvB`E!H9)F)
z57YKNOpL!S0@>4dTwzQH(TZ0YlR$LqRmM^v-Tvn)<MuySndCwGw#)i3A4>(vKHbO+
zlARv2iP;Q9Pl3{BHZfa*`0Se@;`UIw97?a>%xnRYe+lI)Zh@$agwhkC^hqeqxRu!z
E04Up7;s5{u

diff --git a/src/text/03-programmation-parallele.md b/src/text/03-programmation-parallele.md
index 9653b04..fc55f72 100644
--- a/src/text/03-programmation-parallele.md
+++ b/src/text/03-programmation-parallele.md
@@ -1,6 +1,6 @@
 # Distributed High-Performance Computing
 
-\cimgl{figs/distributed_systems.png}{width=\linewidth}{A Distributed High-Performance Computing}{Source: Created by Baptiste Coudray}{fig:dd-sys}
+\cimgl{figs/distributed_systems.png}{width=\linewidth}{A Distributed High-Performance Computing System}{Source: Created by Baptiste Coudray}{fig:dd-sys}
 
 As we can see in \ref{fig:dd-sys}, distributed systems are groups of networked computers that share a common goal. They are used to increasing computing power and solve a complex problem faster than a single machine [@noauthor_distributed_2021]. In order to do that the problem's data are divided along each computer which can be done by communicating with each other via message passing. Each computer executes the same program (which is a distributed program) but on a different data. The algorithm is applied using one of this three computing methods:
 
diff --git a/src/text/05-futhark.md b/src/text/05-futhark.md
index 7530224..3bc4b20 100644
--- a/src/text/05-futhark.md
+++ b/src/text/05-futhark.md
@@ -31,15 +31,7 @@ futhark opencl fact.fut
 echo 12 | ./fact
 ```
 
-To compile the Futhark code, we have to specify a backend; this one allows us to compile our code in:
-
-* (+OpenCL) (opencl, pyopencl),
-* (+CUDA) (cuda),
-* multi-thread (+POSIX) C (multicore),
-* sequential C (c),
-* Python sequential (python).
-
-Here we compile in (+OpenCL) to run the program on the graphics card, and we run the program with the number 12 as the parameter.
+To compile the Futhark code, we have to specify a backend; Here we compile in (+OpenCL) to run the program on the graphics card, and we run the program with the number 12 as the parameter.
 
 ```
 479001600i32
-- 
GitLab