Update latest flushed task count in CSR with AUB dump

Signed-off-by: Lukasz Jobczyk <lukasz.jobczyk@intel.com>
This commit is contained in:
Lukasz Jobczyk
2021-11-12 10:38:26 +00:00
committed by Compute-Runtime-Automation
parent d2a4af9d9d
commit 60677e2f9a
3 changed files with 6 additions and 0 deletions

View File

@@ -214,6 +214,9 @@ class CommandStreamReceiver {
void setLatestSentTaskCount(uint32_t latestSentTaskCount) {
this->latestSentTaskCount = latestSentTaskCount;
}
void setLatestFlushedTaskCount(uint32_t latestFlushedTaskCount) {
this->latestFlushedTaskCount = latestFlushedTaskCount;
}
virtual uint32_t blitBuffer(const BlitPropertiesContainer &blitPropertiesContainer, bool blocking, bool profilingEnabled, Device &device) = 0;