From 793a90908c34c42d53b3268bf3fafd400ba0c7c5 Mon Sep 17 00:00:00 2001 From: Arturo Vargas Date: Mon, 12 Aug 2024 12:08:41 -0700 Subject: [PATCH] clean up 4 --- Intro_Tutorial/lessons/04_raja_forall/README.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Intro_Tutorial/lessons/04_raja_forall/README.md b/Intro_Tutorial/lessons/04_raja_forall/README.md index b8ecf9b..a2ea00d 100644 --- a/Intro_Tutorial/lessons/04_raja_forall/README.md +++ b/Intro_Tutorial/lessons/04_raja_forall/README.md @@ -32,17 +32,16 @@ this example, we will use the `RAJA::seq_exec` policy to execute this loop on the CPU. In later lessons, we will learn about other policies that allow us to run code on a GPU. -In the file four.cpp, you will see a `TODO` comment where you can add a -`RAJA::forall` loop to initialize the array you allocated in the previous +In the file 04_raja_forall.cpp, you will see a `TODO` comment where you can add a +`RAJA::forall` loop to initialize the array you allocated in the previous lesson. When you have made your changes, compile and run the code in the same way as the other lessons: ``` -$ make four -$ ./bin/four -Address of data: +$ make 04_raja_forall +$ ./bin/04_raja_forall +Address of data: data[50] = 50 ``` -