Skip to content

Commit f25bc5e

Browse files
committed
Remove logs duplicated by l0 macro
1 parent 7b8cb9e commit f25bc5e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

source/adapters/level_zero/command_buffer.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)