mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 08:53:55 +08:00
Related-To: NEO-3008 Change-Id: Id2a9a210ca3a611b6663d43f1442b26cfccddb10 Signed-off-by: Piotr Fusik <piotr.fusik@intel.com>
29 lines
511 B
C++
29 lines
511 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/os_interface/linux/drm_engine_mapper.h"
|
|
|
|
#include "drm_neo.h"
|
|
|
|
namespace NEO {
|
|
|
|
void *Drm::query(uint32_t queryId) {
|
|
return nullptr;
|
|
}
|
|
|
|
void Drm::queryEngineInfo() {
|
|
}
|
|
|
|
void Drm::queryMemoryInfo() {
|
|
}
|
|
|
|
unsigned int Drm::bindDrmContext(uint32_t drmContextId, DeviceBitfield deviceBitfield, aub_stream::EngineType engineType) {
|
|
return DrmEngineMapper::engineNodeMap(engineType);
|
|
}
|
|
|
|
} // namespace NEO
|