@@ -2231,7 +2231,7 @@ static void printZeEventList(const _pi_ze_event_list_t &PiZeEventList) {
2231
2231
zePrint (" NumEventsInWaitList %d:" , PiZeEventList.Length );
2232
2232
2233
2233
for (pi_uint32 I = 0 ; I < PiZeEventList.Length ; I++) {
2234
- zePrint (" %#lx " , pi_cast<std::uintptr_t >(PiZeEventList.ZeEventList [I]));
2234
+ zePrint (" %#llx " , pi_cast<std::uintptr_t >(PiZeEventList.ZeEventList [I]));
2235
2235
}
2236
2236
2237
2237
zePrint (" \n " );
@@ -5634,7 +5634,7 @@ piEnqueueKernelLaunch(pi_queue Queue, pi_kernel Kernel, pi_uint32 WorkDim,
5634
5634
}
5635
5635
5636
5636
zePrint (" calling zeCommandListAppendLaunchKernel() with"
5637
- " ZeEvent %#lx \n " ,
5637
+ " ZeEvent %#llx \n " ,
5638
5638
pi_cast<std::uintptr_t >(ZeEvent));
5639
5639
printZeEventList ((*Event)->WaitList );
5640
5640
@@ -6143,7 +6143,7 @@ pi_result piEventsWait(pi_uint32 NumEvents, const pi_event *EventList) {
6143
6143
die (" The host-visible proxy event missing" );
6144
6144
6145
6145
ze_event_handle_t ZeEvent = HostVisibleEvent->ZeEvent ;
6146
- zePrint (" ZeEvent = %#lx \n " , pi_cast<std::uintptr_t >(ZeEvent));
6146
+ zePrint (" ZeEvent = %#llx \n " , pi_cast<std::uintptr_t >(ZeEvent));
6147
6147
ZE_CALL (zeHostSynchronize, (ZeEvent));
6148
6148
EventList[I]->Completed = true ;
6149
6149
}
@@ -6905,7 +6905,7 @@ enqueueMemCopyHelper(pi_command_type CommandType, pi_queue Queue, void *Dst,
6905
6905
const auto &WaitList = (*Event)->WaitList ;
6906
6906
6907
6907
zePrint (" calling zeCommandListAppendMemoryCopy() with\n "
6908
- " ZeEvent %#lx \n " ,
6908
+ " ZeEvent %#llx \n " ,
6909
6909
pi_cast<std::uintptr_t >(ZeEvent));
6910
6910
printZeEventList (WaitList);
6911
6911
@@ -6964,7 +6964,7 @@ static pi_result enqueueMemCopyRectHelper(
6964
6964
const auto &WaitList = (*Event)->WaitList ;
6965
6965
6966
6966
zePrint (" calling zeCommandListAppendMemoryCopy() with\n "
6967
- " ZeEvent %#lx \n " ,
6967
+ " ZeEvent %#llx \n " ,
6968
6968
pi_cast<std::uintptr_t >(ZeEvent));
6969
6969
printZeEventList (WaitList);
6970
6970
@@ -7008,7 +7008,7 @@ static pi_result enqueueMemCopyRectHelper(
7008
7008
7009
7009
ZE_CALL (zeCommandListAppendBarrier, (ZeCommandList, ZeEvent, 0 , nullptr ));
7010
7010
7011
- zePrint (" calling zeCommandListAppendBarrier() with Event %#lx \n " ,
7011
+ zePrint (" calling zeCommandListAppendBarrier() with Event %#llx \n " ,
7012
7012
pi_cast<std::uintptr_t >(ZeEvent));
7013
7013
7014
7014
if (auto Res = Queue->executeCommandList (CommandList, Blocking, OkToBatch))
@@ -7221,7 +7221,7 @@ enqueueMemFillHelper(pi_command_type CommandType, pi_queue Queue, void *Ptr,
7221
7221
WaitList.Length , WaitList.ZeEventList ));
7222
7222
7223
7223
zePrint (" calling zeCommandListAppendMemoryFill() with\n "
7224
- " ZeEvent %#lx \n " ,
7224
+ " ZeEvent %#llx \n " ,
7225
7225
pi_cast<pi_uint64>(ZeEvent));
7226
7226
printZeEventList (WaitList);
7227
7227
0 commit comments