mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
-remove CSR::createMemoryManager method -create MM from platform before creating devices Change-Id: I0e7f091c53b0e60ae7101e82a305253af626330e Signed-off-by: Jobczyk, Lukasz <lukasz.jobczyk@intel.com>
26 lines
392 B
C++
26 lines
392 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/os_interface/linux/drm_neo.h"
|
|
|
|
namespace OCLRT {
|
|
|
|
Drm::~Drm() = default;
|
|
|
|
Drm *Drm::get(int32_t deviceOrdinal) {
|
|
return nullptr;
|
|
}
|
|
|
|
Drm *Drm::create(int32_t deviceOrdinal) {
|
|
return nullptr;
|
|
}
|
|
|
|
void Drm::closeDevice(int32_t deviceOrdinal) {
|
|
return;
|
|
}
|
|
} // namespace OCLRT
|