@@ -330,7 +330,6 @@ ur_result_t enqueueCommandBufferMemCopyHelper(
330330 ze_command_list_handle_t ZeCommandList =
331331 CommandBuffer->chooseCommandList (PreferCopyEngine);
332332
333- logger::debug (" calling zeCommandListAppendMemoryCopy()" );
334333 ZE2UR_CALL (zeCommandListAppendMemoryCopy,
335334 (ZeCommandList, Dst, Src, Size, ZeLaunchEvent, ZeEventList.size (),
336335 getPointerFromVector (ZeEventList)));
@@ -389,7 +388,6 @@ ur_result_t enqueueCommandBufferMemCopyRectHelper(
389388 ze_command_list_handle_t ZeCommandList =
390389 CommandBuffer->chooseCommandList (PreferCopyEngine);
391390
392- logger::debug (" calling zeCommandListAppendMemoryCopyRegion()" );
393391 ZE2UR_CALL (zeCommandListAppendMemoryCopyRegion,
394392 (ZeCommandList, Dst, &ZeDstRegion, DstPitch, DstSlicePitch, Src,
395393 &ZeSrcRegion, SrcPitch, SrcSlicePitch, ZeLaunchEvent,
@@ -422,7 +420,6 @@ ur_result_t enqueueCommandBufferFillHelper(
422420 ze_command_list_handle_t ZeCommandList =
423421 CommandBuffer->chooseCommandList (PreferCopyEngine);
424422
425- logger::debug (" calling zeCommandListAppendMemoryFill()" );
426423 ZE2UR_CALL (zeCommandListAppendMemoryFill,
427424 (ZeCommandList, Ptr, Pattern, PatternSize, Size, ZeLaunchEvent,
428425 ZeEventList.size (), getPointerFromVector (ZeEventList)));
@@ -933,7 +930,6 @@ UR_APIEXPORT ur_result_t UR_APICALL urCommandBufferAppendKernelLaunchExp(
933930 UR_COMMAND_KERNEL_LAUNCH, CommandBuffer, NumSyncPointsInWaitList,
934931 SyncPointWaitList, false , RetSyncPoint, ZeEventList, ZeLaunchEvent));
935932
936- logger::debug (" calling zeCommandListAppendLaunchKernel()" );
937933 ZE2UR_CALL (zeCommandListAppendLaunchKernel,
938934 (CommandBuffer->ZeComputeCommandList , Kernel->ZeKernel ,
939935 &ZeThreadGroupDimensions, ZeLaunchEvent, ZeEventList.size (),
0 commit comments