Skip to content

Commit 827b28c

Browse files
committed
format
1 parent fd15e04 commit 827b28c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

offload/plugins-nextgen/level_zero/include/L0Kernel.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ struct KernelPropertiesTy {
8282
struct L0LaunchEnvTy {
8383
bool IsAsync;
8484
AsyncQueueTy *AsyncQueue;
85-
ze_group_count_t GroupCounts={0, 0, 0};
85+
ze_group_count_t GroupCounts = {0, 0, 0};
8686
KernelPropertiesTy &KernelPR;
8787
bool HalfNumThreads = false;
8888
bool IsTeamsNDRange = false;

offload/plugins-nextgen/level_zero/src/L0Kernel.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,8 @@ static Error launchKernelWithCmdQueue(L0DeviceTy &l0Device,
343343
}
344344

345345
Error L0KernelTy::setKernelGroups(L0DeviceTy &l0Device, L0LaunchEnvTy &KEnv,
346-
uint32_t NumThreads[3], uint32_t NumBlocks[3]) const {
346+
uint32_t NumThreads[3],
347+
uint32_t NumBlocks[3]) const {
347348

348349
if (KernelEnvironment.Configuration.ExecMode != OMP_TGT_EXEC_MODE_BARE) {
349350
// For non-bare mode, the groups are already set in the launch

0 commit comments

Comments
 (0)