From 2fdaaf86d0e0a61e92caf12568480b4edba7d4d4 Mon Sep 17 00:00:00 2001 From: Rafal Bielski Date: Wed, 15 Jan 2025 11:55:27 +0000 Subject: [PATCH] Remove mentions of constant memory Constant memory is deprecated in SYCL 2020, so remove it from the slides about the SYCL memory model. --- Lesson_Materials/Data_Parallelism/index.html | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Lesson_Materials/Data_Parallelism/index.html b/Lesson_Materials/Data_Parallelism/index.html index af299bbe..2f2e571e 100644 --- a/Lesson_Materials/Data_Parallelism/index.html +++ b/Lesson_Materials/Data_Parallelism/index.html @@ -406,11 +406,10 @@
- ![Constant Memory](../common-revealjs/images/workitem-constantmemory.png "Constant Memory") + ![Global Memory](../common-revealjs/images/workitem-constantmemory.png "Global Memory")
* Each work-item can access a single region of **global memory** that's accessible to all work-items in a ND-range - * Each work-item can also access a region of global memory reserved as **constant memory**, which is read-only
@@ -423,8 +422,8 @@
* Each memory region has a different size and access latency - * Global / constant memory is larger than local memory and local memory is larger than private memory - * Private memory is faster than local memory and local memory is faster than global / constant memory + * Global memory is larger than local memory and local memory is larger than private memory + * Private memory is faster than local memory and local memory is faster than global memory
![Memory Regions](../common-revealjs/images/memory-regions.png "Memory Regions")