Remove unused method

Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
This commit is contained in:
Bartosz Dunajski
2021-05-06 15:29:10 +00:00
committed by Compute-Runtime-Automation
parent 32025efafb
commit 99212b1aa5
2 changed files with 0 additions and 10 deletions

View File

@ -909,15 +909,6 @@ void Wddm::getDeviceState() {
#endif
}
void Wddm::handleCompletion(OsContextWin &osContext) {
auto &monitoredFence = osContext.getResidencyController().getMonitoredFence();
if (monitoredFence.cpuAddress) {
auto *currentTag = monitoredFence.cpuAddress;
while (*currentTag < monitoredFence.currentFenceValue - 1)
;
}
}
unsigned int Wddm::readEnablePreemptionRegKey() {
return static_cast<unsigned int>(registryReader->getSetting("EnablePreemption", 1));
}

View File

@ -203,7 +203,6 @@ class Wddm {
bool destroyPagingQueue();
bool destroyDevice();
void getDeviceState();
void handleCompletion(OsContextWin &osContext);
MOCKABLE_VIRTUAL void createPagingFenceLogger();
static GetSystemInfoFcn getSystemInfo;