mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-31 20:13:04 +08:00
Support for Initialization using zesInit Support Power module using new sysman initialization Related-To: LOCI-4134 Signed-off-by: Kulkarni, Ashwin Kumar <ashwin.kumar.kulkarni@intel.com>
20 lines
414 B
C++
20 lines
414 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::move(hwDeviceId);
|
|
}
|
|
|
|
} // namespace Sysman
|
|
} // namespace L0
|