Skip to content

Commit

Permalink
Remove mentions of constant memory
Browse files Browse the repository at this point in the history
Constant memory is deprecated in SYCL 2020, so remove
it from the slides about the SYCL memory model.
  • Loading branch information
rafbiels committed Jan 15, 2025
1 parent c8e9ac7 commit 2fdaaf8
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Lesson_Materials/Data_Parallelism/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -406,11 +406,10 @@
</div>
<div class="container">
<div class="col-left-3" data-markdown>
![Constant Memory](../common-revealjs/images/workitem-constantmemory.png "Constant Memory")
![Global Memory](../common-revealjs/images/workitem-constantmemory.png "Global Memory")
</div>
<div class="col-right-2" data-markdown>
* 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
</div>

</div>
Expand All @@ -423,8 +422,8 @@
<div class="container">
<div class="col" data-markdown>
* 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
</div>
<div class="col" data-markdown>
![Memory Regions](../common-revealjs/images/memory-regions.png "Memory Regions")
Expand Down

0 comments on commit 2fdaaf8

Please sign in to comment.