Skip to content

Commit 8c1231f

Browse files
committed
New generated change after main merge.
Signed-off-by: JackAKirk <jack.kirk@codeplay.com>
1 parent bf156d4 commit 8c1231f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

source/loader/layers/tracing/ur_trcddi.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7448,6 +7448,8 @@ __urdlllocal ur_result_t UR_APICALL urEnqueueKernelLaunchCustomExp(
74487448
context.notify_begin(UR_FUNCTION_ENQUEUE_KERNEL_LAUNCH_CUSTOM_EXP,
74497449
"urEnqueueKernelLaunchCustomExp", &params);
74507450

7451+
context.logger.info("---> urEnqueueKernelLaunchCustomExp");
7452+
74517453
ur_result_t result = pfnKernelLaunchCustomExp(
74527454
hQueue, hKernel, workDim, pGlobalWorkSize, pLocalWorkSize,
74537455
numPropsInLaunchPropList, launchPropList, numEventsInWaitList,
@@ -7457,6 +7459,11 @@ __urdlllocal ur_result_t UR_APICALL urEnqueueKernelLaunchCustomExp(
74577459
"urEnqueueKernelLaunchCustomExp", &params, &result,
74587460
instance);
74597461

7462+
std::ostringstream args_str;
7463+
ur::extras::printFunctionParams(
7464+
args_str, UR_FUNCTION_ENQUEUE_KERNEL_LAUNCH_CUSTOM_EXP, &params);
7465+
context.logger.info("({}) -> {};\n", args_str.str(), result);
7466+
74607467
return result;
74617468
}
74627469

0 commit comments

Comments
 (0)