Skip to content

Commit a8d6290

Browse files
authored
[SYCL][ESIMD][E2E] Fix unified memory block_store local accessor test (intel#12229)
We should be using `Size` like the rest of the tests. Signed-off-by: Sarnie, Nick <nick.sarnie@intel.com>
1 parent 886ba05 commit a8d6290

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sycl/test-e2e/ESIMD/unified_memory_api/Inputs/block_store.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ bool testLocalAccSLM(queue Q, uint32_t Groups,
332332

333333
constexpr size_t Alignment = getAlignment<T, N, UseMask>(StoreProperties);
334334

335-
shared_vector Out(GroupSize, shared_allocator{Q});
335+
shared_vector Out(Size, shared_allocator{Q});
336336
T OutVal = esimd_test::getRandomValue<T>();
337337
for (int i = 0; i < Size; i++)
338338
Out[i] = OutVal;

0 commit comments

Comments
 (0)