|
27 | 27 | #include "opencl/source/event/user_event.h" |
28 | 28 | #include "opencl/source/gtpin/gtpin_notify.h" |
29 | 29 | #include "opencl/source/helpers/cl_blit_properties.h" |
| 30 | +#include "opencl/source/helpers/cl_hw_helper.h" |
30 | 31 | #include "opencl/source/helpers/dispatch_info_builder.h" |
31 | 32 | #include "opencl/source/helpers/enqueue_properties.h" |
32 | 33 | #include "opencl/source/helpers/hardware_commands_helper.h" |
@@ -94,7 +95,7 @@ void CommandQueueHw<GfxFamily>::enqueueHandler(Surface *(&surfaces)[surfaceCount |
94 | 95 | } |
95 | 96 | } |
96 | 97 |
|
97 | | - if (HwHelperHw<GfxFamily>::isBlitAuxTranslationRequired(device->getHardwareInfo(), multiDispatchInfo)) { |
| 98 | + if (ClHwHelperHw<GfxFamily>::isBlitAuxTranslationRequired(device->getHardwareInfo(), multiDispatchInfo)) { |
98 | 99 | setupBlitAuxTranslation(multiDispatchInfo); |
99 | 100 | } |
100 | 101 |
|
@@ -182,7 +183,7 @@ void CommandQueueHw<GfxFamily>::enqueueHandler(Surface **surfacesForResidency, |
182 | 183 | CsrDependencies csrDeps; |
183 | 184 | BlitPropertiesContainer blitPropertiesContainer; |
184 | 185 |
|
185 | | - bool enqueueWithBlitAuxTranslation = HwHelperHw<GfxFamily>::isBlitAuxTranslationRequired(device->getHardwareInfo(), multiDispatchInfo); |
| 186 | + bool enqueueWithBlitAuxTranslation = ClHwHelperHw<GfxFamily>::isBlitAuxTranslationRequired(device->getHardwareInfo(), multiDispatchInfo); |
186 | 187 |
|
187 | 188 | if (getGpgpuCommandStreamReceiver().peekTimestampPacketWriteEnabled()) { |
188 | 189 | eventsRequest.fillCsrDependencies(csrDeps, getGpgpuCommandStreamReceiver(), CsrDependencies::DependenciesType::OnCsr); |
@@ -210,7 +211,7 @@ void CommandQueueHw<GfxFamily>::enqueueHandler(Surface **surfacesForResidency, |
210 | 211 | blockedCommandsData, surfacesForResidency, numSurfaceForResidency); |
211 | 212 | auto commandStreamStart = commandStream.getUsed(); |
212 | 213 |
|
213 | | - if (HwHelperHw<GfxFamily>::isBlitAuxTranslationRequired(device->getHardwareInfo(), multiDispatchInfo)) { |
| 214 | + if (ClHwHelperHw<GfxFamily>::isBlitAuxTranslationRequired(device->getHardwareInfo(), multiDispatchInfo)) { |
214 | 215 | processDispatchForBlitAuxTranslation(multiDispatchInfo, blitPropertiesContainer, timestampPacketDependencies, |
215 | 216 | eventsRequest, blockQueue); |
216 | 217 | } |
|
0 commit comments