Add residency handler for TBX

Change-Id: I6c01d065ff3372fe7583ed50ed51595ebeb53e54
Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
This commit is contained in:
Maciej Plewka
2019-08-21 10:53:07 +02:00
committed by sys_ocldev
parent cb4e5576cb
commit 7a5bc461eb
49 changed files with 382 additions and 118 deletions

View File

@@ -0,0 +1,27 @@
/*
* Copyright (C) 2019 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "runtime/os_interface/linux/drm_memory_operations_handler.h"
namespace NEO {
DrmMemoryOperationsHandler::DrmMemoryOperationsHandler() {
}
bool DrmMemoryOperationsHandler::makeResident(GraphicsAllocation &gfxAllocation) {
return false;
}
bool DrmMemoryOperationsHandler::evict(GraphicsAllocation &gfxAllocation) {
return false;
}
bool DrmMemoryOperationsHandler::isResident(GraphicsAllocation &gfxAllocation) {
return false;
}
} // namespace NEO