mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-01 04:23:00 +08:00
This patch adds support to open and close the drm fd, so that more granular control of drm fd could be achieved. Related-To: LOCI-3986 Signed-off-by: Joshua Santosh Ranjan <joshua.santosh.ranjan@intel.com>
20 lines
427 B
C++
20 lines
427 B
C++
/*
|
|
* Copyright (C) 2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/os_interface/os_interface.h"
|
|
|
|
#include "level_zero/sysman/source/sysman_hw_device_id.h"
|
|
|
|
namespace L0 {
|
|
namespace Sysman {
|
|
|
|
std::unique_ptr<NEO::HwDeviceId> createSysmanHwDeviceId(std::unique_ptr<NEO::HwDeviceId> &hwDeviceId) {
|
|
return std::unique_ptr<NEO::HwDeviceId>{};
|
|
}
|
|
|
|
} // namespace Sysman
|
|
} // namespace L0
|