mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 01:04:57 +08:00
fix: setting flush stamp to not have zero value
when direct submission and monitor fence is not required then use current fence value to update flush stamp Related-To: NEO-9123 Signed-off-by: Katarzyna Cencelewska <katarzyna.cencelewska@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
0e8c3bf473
commit
3ad68cb7d6
@@ -150,7 +150,8 @@ uint64_t WddmDirectSubmission<GfxFamily, Dispatcher>::updateTagValue(bool requir
|
||||
if (requireMonitorFence) {
|
||||
return this->updateTagValueImpl();
|
||||
}
|
||||
return 0ull;
|
||||
MonitoredFence ¤tFence = osContextWin->getResidencyController().getMonitoredFence();
|
||||
return currentFence.currentFenceValue;
|
||||
}
|
||||
|
||||
template <typename GfxFamily, typename Dispatcher>
|
||||
|
||||
Reference in New Issue
Block a user