mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 21:18:24 +08:00
fix: call processFlushResidency on aub operations handler
- in Os with AubDump mode Related-To: NEO-11719 Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
48cb550955
commit
8b1bedd1f6
@@ -66,6 +66,10 @@ class DrmMemoryOperationsHandlerWithAubDump : public BaseOperationsHandler {
|
||||
return BaseOperationsHandler::evictWithinOsContext(osContext, gfxAllocation);
|
||||
}
|
||||
|
||||
void processFlushResidency(CommandStreamReceiver *csr) override {
|
||||
aubMemoryOperationsHandler->processFlushResidency(csr);
|
||||
}
|
||||
|
||||
protected:
|
||||
std::unique_ptr<AubMemoryOperationsHandler> aubMemoryOperationsHandler;
|
||||
};
|
||||
|
||||
@@ -61,6 +61,10 @@ class WddmMemoryOperationsHandlerWithAubDump : public BaseOperationsHandler {
|
||||
return BaseOperationsHandler::evictWithinOsContext(osContext, gfxAllocation);
|
||||
}
|
||||
|
||||
void processFlushResidency(CommandStreamReceiver *csr) override {
|
||||
aubMemoryOperationsHandler->processFlushResidency(csr);
|
||||
}
|
||||
|
||||
protected:
|
||||
std::unique_ptr<AubMemoryOperationsHandler> aubMemoryOperationsHandler;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user