Skip to content

Commit 57afb56

Browse files
Hugh DelaneyAerialMantis
authored andcommitted
Fix typo
1 parent 904aba0 commit 57afb56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Code_Exercises/Exercise_18_Local_Memory_Tiling/solution.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ TEST_CASE("image_convolution_tiled", "local_memory_tiling_solution") {
104104

105105
for (auto i = localId[0]; i < scratchpadRange[0];
106106
i += localRange[0]) {
107-
for (auto j = localId[1]; j < scratchpadRange[0];
107+
for (auto j = localId[1]; j < scratchpadRange[1];
108108
j += localRange[1]) {
109109
scratchpad[i][j] =
110110
inputAcc[globalGroupOffset + sycl::range(i, j)];

0 commit comments

Comments
 (0)