Skip to content

Commit 3443815

Browse files
committed
Format the renaming
1 parent fd68f4d commit 3443815

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

sycl/source/detail/kernel_info.hpp

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,15 +156,16 @@ get_kernel_device_specific_info<
156156
size_t ResultSize = 0;
157157

158158
// First call to get the number of device images
159-
Adapter->call<UrApiKind::urKernelGetInfo>(Kernel, UR_KERNEL_INFO_SPILL_MEM_SIZE, 0, nullptr,
160-
&ResultSize);
159+
Adapter->call<UrApiKind::urKernelGetInfo>(
160+
Kernel, UR_KERNEL_INFO_SPILL_MEM_SIZE, 0, nullptr, &ResultSize);
161161

162162
size_t DeviceCount = ResultSize / sizeof(uint32_t);
163163

164164
// Second call to retrieve the data
165165
std::vector<uint32_t> Device2SpillMap(DeviceCount);
166-
Adapter->call<UrApiKind::urKernelGetInfo>(Kernel, UR_KERNEL_INFO_SPILL_MEM_SIZE, ResultSize,
167-
Device2SpillMap.data(), nullptr);
166+
Adapter->call<UrApiKind::urKernelGetInfo>(
167+
Kernel, UR_KERNEL_INFO_SPILL_MEM_SIZE, ResultSize, Device2SpillMap.data(),
168+
nullptr);
168169

169170
ur_program_handle_t Program;
170171
Adapter->call<UrApiKind::urKernelGetInfo>(Kernel, UR_KERNEL_INFO_PROGRAM,

0 commit comments

Comments
 (0)