refactor, remove typo in struct name

change name of EncodeSempahore to EncodeSemaphore
Signed-off-by: Cencelewska, Katarzyna <katarzyna.cencelewska@intel.com>
This commit is contained in:
Cencelewska, Katarzyna
2023-03-10 13:49:06 +00:00
committed by Compute-Runtime-Automation
parent 89cd4bd4a5
commit 398c7b2d29
45 changed files with 137 additions and 137 deletions

View File

@@ -214,7 +214,7 @@ size_t EnqueueOperation<GfxFamily>::getTotalSizeRequiredCS(uint32_t eventType, c
if (DebugManager.flags.PauseOnEnqueue.get() != -1) {
expectedSizeCS += MemorySynchronizationCommands<GfxFamily>::getSizeForSingleBarrier(false) * 2;
expectedSizeCS += NEO::EncodeSempahore<GfxFamily>::getSizeMiSemaphoreWait() * 2;
expectedSizeCS += NEO::EncodeSemaphore<GfxFamily>::getSizeMiSemaphoreWait() * 2;
}
if (DebugManager.flags.GpuScratchRegWriteAfterWalker.get() != -1) {

View File

@@ -286,7 +286,7 @@ inline void HardwareInterface<GfxFamily>::dispatchDebugPauseCommands(
{
using COMPARE_OPERATION = typename GfxFamily::MI_SEMAPHORE_WAIT::COMPARE_OPERATION;
EncodeSempahore<GfxFamily>::addMiSemaphoreWaitCommand(*commandStream,
EncodeSemaphore<GfxFamily>::addMiSemaphoreWaitCommand(*commandStream,
address,
static_cast<uint32_t>(waitCondition),
COMPARE_OPERATION::COMPARE_OPERATION_SAD_EQUAL_SDD);