Skip to content

Commit 760761f

Browse files
committed
[SYCL] Fix SPIR-V broadcast index
uint32_t => size_t Signed-off-by: John Pennycook <[email protected]>
1 parent 35b9c8a commit 760761f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sycl/include/CL/__spirv/spirv_ops.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ extern SYCL_EXTERNAL bool __spirv_GroupAny(__spv::Scope Execution,
191191
template <typename dataT>
192192
extern SYCL_EXTERNAL dataT __spirv_GroupBroadcast(__spv::Scope Execution,
193193
dataT Value,
194-
uint32_t LocalId) noexcept;
194+
size_t LocalId) noexcept;
195195

196196
template <typename dataT>
197197
extern SYCL_EXTERNAL dataT

0 commit comments

Comments
 (0)