Skip to content

Commit 7efcbc0

Browse files
clang-format fix
1 parent 11155d1 commit 7efcbc0

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

sycl/source/handler.cpp

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -212,11 +212,10 @@ event handler::finalize() {
212212
backend::ext_intel_esimd_emulator) {
213213
// Dims==0 for 'single_task() - void(void) type'
214214
uint32_t Dims = (MArgs.size() > 0) ? MNDRDesc.Dims : 0;
215-
MQueue->getPlugin()
216-
.call<detail::PiApiKind::piEnqueueKernelLaunch>(
217-
nullptr, reinterpret_cast<pi_kernel>(MHostKernel->getPtr()),
218-
Dims, &MNDRDesc.GlobalOffset[0], &MNDRDesc.GlobalSize[0],
219-
&MNDRDesc.LocalSize[0], 0, nullptr, nullptr);
215+
MQueue->getPlugin().call<detail::PiApiKind::piEnqueueKernelLaunch>(
216+
nullptr, reinterpret_cast<pi_kernel>(MHostKernel->getPtr()), Dims,
217+
&MNDRDesc.GlobalOffset[0], &MNDRDesc.GlobalSize[0],
218+
&MNDRDesc.LocalSize[0], 0, nullptr, nullptr);
220219
return CL_SUCCESS;
221220
} else {
222221
return enqueueImpKernel(MQueue, MNDRDesc, MArgs, KernelBundleImpPtr,

0 commit comments

Comments
 (0)