mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
Add residency handler for TBX
Change-Id: I6c01d065ff3372fe7583ed50ed51595ebeb53e54 Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
This commit is contained in:
committed by
sys_ocldev
parent
cb4e5576cb
commit
7a5bc461eb
27
runtime/os_interface/linux/drm_memory_operations_handler.cpp
Normal file
27
runtime/os_interface/linux/drm_memory_operations_handler.cpp
Normal 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
|
||||
Reference in New Issue
Block a user