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