Skip to content

Commit 3d3aba6

Browse files
committed
Print info inside array rather than pointer
1 parent c6bca1b commit 3d3aba6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

source/adapters/level_zero/command_buffer.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1295,7 +1295,9 @@ UR_APIEXPORT ur_result_t UR_APICALL urCommandBufferUpdateKernelLaunchExp(
12951295
MutableGroupCountDesc->pNext = NextDesc;
12961296
DEBUG_LOG(MutableGroupCountDesc->pNext);
12971297
MutableGroupCountDesc->pGroupCount = &ZeThreadGroupDimensions;
1298-
DEBUG_LOG(MutableGroupCountDesc->pGroupCount);
1298+
DEBUG_LOG(MutableGroupCountDesc->pGroupCount->groupCountX);
1299+
DEBUG_LOG(MutableGroupCountDesc->pGroupCount->groupCountY);
1300+
DEBUG_LOG(MutableGroupCountDesc->pGroupCount->groupCountZ);
12991301
NextDesc = MutableGroupCountDesc.get();
13001302
GroupCountDescs.push_back(std::move(MutableGroupCountDesc));
13011303

0 commit comments

Comments
 (0)