mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
Change-Id: I5434e30b5200d89d9912aeb7a06b230220ec1de4 Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
28 lines
719 B
C++
28 lines
719 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/os_interface/linux/drm_memory_operations_handler.h"
|
|
|
|
namespace NEO {
|
|
|
|
DrmMemoryOperationsHandler::DrmMemoryOperationsHandler() {
|
|
}
|
|
|
|
MemoryOperationsStatus DrmMemoryOperationsHandler::makeResident(ArrayRef<GraphicsAllocation *> gfxAllocations) {
|
|
return MemoryOperationsStatus::UNSUPPORTED;
|
|
}
|
|
|
|
MemoryOperationsStatus DrmMemoryOperationsHandler::evict(GraphicsAllocation &gfxAllocation) {
|
|
return MemoryOperationsStatus::UNSUPPORTED;
|
|
}
|
|
|
|
MemoryOperationsStatus DrmMemoryOperationsHandler::isResident(GraphicsAllocation &gfxAllocation) {
|
|
return MemoryOperationsStatus::UNSUPPORTED;
|
|
}
|
|
|
|
} // namespace NEO
|