mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 01:04:57 +08:00
Related-To: NEO-3008 Change-Id: I0c26656c905ad52295ed0aaf2c53731c99da9cc2 Signed-off-by: Slawomir Milczarek <slawomir.milczarek@intel.com>
37 lines
590 B
C++
37 lines
590 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() {
|
|
}
|
|
|
|
int Drm::setEngines() {
|
|
return 0;
|
|
}
|
|
|
|
int Drm::setMemoryRegions() {
|
|
return 0;
|
|
}
|
|
|
|
unsigned int Drm::bindDrmContext(uint32_t drmContextId, uint32_t deviceIndex, aub_stream::EngineType engineType) {
|
|
return DrmEngineMapper::engineNodeMap(engineType);
|
|
}
|
|
|
|
} // namespace NEO
|