Skip to content

Commit eccebfb

Browse files
Fix typo 2/n
Signed-off-by: Rafal Maziejuk <[email protected]>
1 parent 5f97ff1 commit eccebfb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

opencl/source/command_queue/enqueue_common.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ void CommandQueueHw<GfxFamily>::enqueueHandler(Surface **surfacesForResidency,
168168

169169
TagNodeBase *hwTimeStamps = nullptr;
170170

171-
auto commandStreamRecieverOwnership = getGpgpuCommandStreamReceiver().obtainUniqueOwnership();
171+
auto commandStreamReceiverOwnership = getGpgpuCommandStreamReceiver().obtainUniqueOwnership();
172172

173173
EventBuilder eventBuilder;
174174
setupEvent(eventBuilder, event, commandType);
@@ -405,7 +405,7 @@ void CommandQueueHw<GfxFamily>::enqueueHandler(Surface **surfacesForResidency,
405405
}
406406

407407
queueOwnership.unlock();
408-
commandStreamRecieverOwnership.unlock();
408+
commandStreamReceiverOwnership.unlock();
409409

410410
if (blocking) {
411411
waitForAllEngines(blockQueue, (blockQueue ? nullptr : printfHandler.get()));
@@ -1161,7 +1161,7 @@ size_t CommandQueueHw<GfxFamily>::calculateHostPtrSizeForImage(const size_t *reg
11611161
template <typename GfxFamily>
11621162
template <uint32_t cmdType>
11631163
void CommandQueueHw<GfxFamily>::enqueueBlit(const MultiDispatchInfo &multiDispatchInfo, cl_uint numEventsInWaitList, const cl_event *eventWaitList, cl_event *event, bool blocking, CommandStreamReceiver &bcsCsr) {
1164-
auto commandStreamRecieverOwnership = getGpgpuCommandStreamReceiver().obtainUniqueOwnership();
1164+
auto commandStreamReceiverOwnership = getGpgpuCommandStreamReceiver().obtainUniqueOwnership();
11651165

11661166
EventsRequest eventsRequest(numEventsInWaitList, eventWaitList, event);
11671167
EventBuilder eventBuilder;
@@ -1240,7 +1240,7 @@ void CommandQueueHw<GfxFamily>::enqueueBlit(const MultiDispatchInfo &multiDispat
12401240
timestampPacketDependencies.moveNodesToNewContainer(*deferredTimestampPackets);
12411241

12421242
queueOwnership.unlock();
1243-
commandStreamRecieverOwnership.unlock();
1243+
commandStreamReceiverOwnership.unlock();
12441244

12451245
if (blocking) {
12461246
waitForAllEngines(blockQueue, nullptr);

0 commit comments

Comments
 (0)