@@ -330,7 +330,6 @@ ur_result_t enqueueCommandBufferMemCopyHelper(
330
330
ze_command_list_handle_t ZeCommandList =
331
331
CommandBuffer->chooseCommandList (PreferCopyEngine);
332
332
333
- logger::debug (" calling zeCommandListAppendMemoryCopy()" );
334
333
ZE2UR_CALL (zeCommandListAppendMemoryCopy,
335
334
(ZeCommandList, Dst, Src, Size, ZeLaunchEvent, ZeEventList.size (),
336
335
getPointerFromVector (ZeEventList)));
@@ -389,7 +388,6 @@ ur_result_t enqueueCommandBufferMemCopyRectHelper(
389
388
ze_command_list_handle_t ZeCommandList =
390
389
CommandBuffer->chooseCommandList (PreferCopyEngine);
391
390
392
- logger::debug (" calling zeCommandListAppendMemoryCopyRegion()" );
393
391
ZE2UR_CALL (zeCommandListAppendMemoryCopyRegion,
394
392
(ZeCommandList, Dst, &ZeDstRegion, DstPitch, DstSlicePitch, Src,
395
393
&ZeSrcRegion, SrcPitch, SrcSlicePitch, ZeLaunchEvent,
@@ -422,7 +420,6 @@ ur_result_t enqueueCommandBufferFillHelper(
422
420
ze_command_list_handle_t ZeCommandList =
423
421
CommandBuffer->chooseCommandList (PreferCopyEngine);
424
422
425
- logger::debug (" calling zeCommandListAppendMemoryFill()" );
426
423
ZE2UR_CALL (zeCommandListAppendMemoryFill,
427
424
(ZeCommandList, Ptr, Pattern, PatternSize, Size, ZeLaunchEvent,
428
425
ZeEventList.size (), getPointerFromVector (ZeEventList)));
@@ -933,7 +930,6 @@ UR_APIEXPORT ur_result_t UR_APICALL urCommandBufferAppendKernelLaunchExp(
933
930
UR_COMMAND_KERNEL_LAUNCH, CommandBuffer, NumSyncPointsInWaitList,
934
931
SyncPointWaitList, false , RetSyncPoint, ZeEventList, ZeLaunchEvent));
935
932
936
- logger::debug (" calling zeCommandListAppendLaunchKernel()" );
937
933
ZE2UR_CALL (zeCommandListAppendLaunchKernel,
938
934
(CommandBuffer->ZeComputeCommandList , Kernel->ZeKernel ,
939
935
&ZeThreadGroupDimensions, ZeLaunchEvent, ZeEventList.size (),
0 commit comments