We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94138e2 commit ca779d0Copy full SHA for ca779d0
sycl/plugins/level_zero/pi_level_zero.hpp
100755
100644
@@ -192,7 +192,7 @@ struct _pi_context : _pi_object {
192
ZeEventPool{nullptr}, NumEventsAvailableInEventPool{},
193
NumEventsLiveInEventPool{} {
194
// Create USM allocator context for each pair (device, context).
195
- for (uint32_t I; I < NumDevices; I++) {
+ for (uint32_t I = 0; I < NumDevices; I++) {
196
pi_device Device = Devs[I];
197
SharedMemAllocContexts.emplace(
198
std::piecewise_construct, std::make_tuple(Device),
0 commit comments