refactor: remove not needed debug variable

Signed-off-by: Michal Mrozek <michal.mrozek@intel.com>
This commit is contained in:
Michal Mrozek
2025-08-20 09:56:29 +00:00
committed by Compute-Runtime-Automation
parent 9604a9d8f0
commit 3b017d41a7
14 changed files with 12 additions and 190 deletions

View File

@@ -254,7 +254,7 @@ class DirectSubmissionHw {
void *semaphorePtr = nullptr;
volatile RingSemaphoreData *semaphoreData = nullptr;
uint32_t *pciBarrierPtr = nullptr;
volatile TagAddressType *tagAddress;
volatile TagAddressType *tagAddress = nullptr;
uint32_t currentQueueWorkCount = 1u;
uint32_t activeTiles = 1u;

View File

@@ -51,9 +51,6 @@ DirectSubmissionHw<GfxFamily, Dispatcher>::DirectSubmissionHw(const DirectSubmis
disableCacheFlush = UllsDefaults::defaultDisableCacheFlush;
disableMonitorFence = UllsDefaults::defaultDisableMonitorFence;
if (debugManager.flags.DirectSubmissionDisableMonitorFence.get() != -1) {
this->disableMonitorFence = debugManager.flags.DirectSubmissionDisableMonitorFence.get();
}
if (debugManager.flags.DirectSubmissionMaxRingBuffers.get() != -1) {
this->maxRingBufferCount = debugManager.flags.DirectSubmissionMaxRingBuffers.get();