File tree 1 file changed +12
-0
lines changed
source/adapters/level_zero
1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -1179,6 +1179,18 @@ UR_APIEXPORT ur_result_t UR_APICALL urCommandBufferUpdateKernelLaunchExp(
1179
1179
UR_ASSERT (Command->CommandBuffer ->IsFinalized ,
1180
1180
UR_RESULT_ERROR_INVALID_OPERATION);
1181
1181
1182
+ if (CommandDesc->pNewGlobalWorkSize ) {
1183
+ logger::debug (
1184
+ " UR GWS Update ({} {} {})" , CommandDesc->pNewGlobalWorkSize [0 ],
1185
+ CommandDesc->pNewGlobalWorkSize [1 ], CommandDesc->pNewGlobalWorkSize [2 ]);
1186
+ }
1187
+
1188
+ if (CommandDesc->pNewLocalWorkSize ) {
1189
+ logger::debug (" UR LWS Update({} {} {})" , CommandDesc->pNewLocalWorkSize [0 ],
1190
+ CommandDesc->pNewLocalWorkSize [1 ],
1191
+ CommandDesc->pNewLocalWorkSize [2 ]);
1192
+ }
1193
+
1182
1194
uint32_t Dim = CommandDesc->newWorkDim ;
1183
1195
if (Dim != 0 ) {
1184
1196
// Error if work dim changes
You can’t perform that action at this time.
0 commit comments