Skip to content

Commit 96d0a60

Browse files
committed
removed ntload in sycl/reduction
1 parent 199df0e commit 96d0a60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algorithms/sycl/Reduction.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ namespace {
101101
for (std::size_t i = 0; i < itemsPerWorkItem*workGroupSize; i += workGroupSize) {
102102
const auto id = baseIdx + i;
103103
if(id < size){
104-
threadAcc = operation(threadAcc, static_cast<AccT>(ntload(&buffer[id])));
104+
threadAcc = operation(threadAcc, static_cast<AccT>((buffer[id])));
105105
}
106106
}
107107

0 commit comments

Comments
 (0)