From 3d22aaeee799c8429b3b674a22a2069154bd3b8d Mon Sep 17 00:00:00 2001 From: "Mads R. B. Kristensen" Date: Fri, 15 Apr 2016 14:27:15 +0200 Subject: [PATCH] fixed link typo --- heat_equation/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heat_equation/README.md b/heat_equation/README.md index 62898aa..980bc3d 100644 --- a/heat_equation/README.md +++ b/heat_equation/README.md @@ -52,7 +52,7 @@ Now, let's run it (note that `CHPL_RT_NUM_THREADS_PER_LOCALE` tells Chapel the n Multiple Machines ----------------- -In order to improve the performance even further, we can tell Chapel to execute the stencil operation in parallel on multiple machines (`multiple_machines.chpl `). +In order to improve the performance even further, we can tell Chapel to execute the stencil operation in parallel on multiple machines ([multiple_machines.chpl](src/multiple_machines.chpl)). We still use the `forall` loop construct, be we have to tell Chapel how to distributes `A` and `T` between the multiple machines. For that, we use the `dmapped` language construct when defining the `Grid` and `Interior` domain: ``` -- GitLab