Skip to content

Commit 0513333

Browse files
committed
Update info on get_native() & fix typo
1 parent 151cfed commit 0513333

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Lesson_Materials/Lecture_14_ND_Range_Kernel/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@
330330
* Nested subscript operators can be called for each dimension taking a **size_t**
331331
* E.g. a 3-dimensional accessor: acc[x][y][z] = …
332332
* A pointer to memory can be retrieved by calling **get_pointer**
333-
* This returns a **multi_ptr**, which is a wrapper class for pointers to the memory in the relevant memory space
333+
* This returns a raw pointer to the data
334334
</div>
335335
</section>
336336
<!--Slide 23-->

Lesson_Materials/Lecture_16_Coalesced_Global_Memory/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138
#### Row-major vs Column-major
139139
</div>
140140
<div class="container" data-markdown>
141-
* Coalescing global memory access is particularly important when wording in multiple dimensions.
141+
* Coalescing global memory access is particularly important when working in multiple dimensions.
142142
* This is because when doing so you have to convert from a position in 2d space to a linear memory space.
143143
* There are two ways to do this; generally referred to as row-major and column-major.
144144
</div>

0 commit comments

Comments
 (0)