feat: dont wait on fence in ulls switch buffers

Related-To: NEO-7797

Signed-off-by: Dominik Dabek <dominik.dabek@intel.com>
This commit is contained in:
Dominik Dabek
2023-03-28 17:12:48 +00:00
committed by Compute-Runtime-Automation
parent 4c891e80a5
commit ff2e4f6066
3 changed files with 3 additions and 15 deletions

View File

@@ -219,12 +219,6 @@ void DrmDirectSubmission<GfxFamily, Dispatcher>::handleSwitchRingBuffers() {
this->ringBuffers[this->previousRingBuffer].completionFence = this->currentTagData.tagValue;
}
}
if (this->ringStart) {
if (this->ringBuffers[this->currentRingBuffer].completionFence != 0) {
this->wait(static_cast<uint32_t>(this->ringBuffers[this->currentRingBuffer].completionFence));
}
}
}
template <typename GfxFamily, typename Dispatcher>