Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit c2e1182

Browse files
committed
Fix a break
1 parent 3780cee commit c2e1182

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SYCL/ESIMD/lsc/lsc_predicate.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ template <unsigned SIMDSize> int testUSM(queue q) {
126126
std::iota(vec_1, vec_1 + size, 0);
127127
std::iota(vec_2, vec_2 + size, 0);
128128
std::iota(vec_3, vec_3 + size, 0);
129-
std::iota(vec_input, vec_3 + size, 0);
129+
std::iota(vec_input, vec_input + size, 0);
130130

131131
try {
132132
q.submit([&](handler &h) {

0 commit comments

Comments
 (0)