mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
- Added support for the Power APIs in the new sysman design. - Added ULTs for the Power APIs in the new sysman design. - Added change to measure the average power in the black box test for Power. Related-To: LOCI-3891 Signed-off-by: Bari, Pratik <pratik.bari@intel.com>
56 lines
1.8 KiB
C++
56 lines
1.8 KiB
C++
/*
|
|
* Copyright (C) 2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/execution_environment/execution_environment.h"
|
|
|
|
#include "level_zero/sysman/source/sysman_device_imp.h"
|
|
|
|
#include <cstring>
|
|
#include <vector>
|
|
|
|
namespace L0 {
|
|
namespace Sysman {
|
|
|
|
SysmanDevice *SysmanDevice::create(NEO::ExecutionEnvironment &executionEnvironment, const uint32_t rootDeviceIndex) {
|
|
|
|
SysmanDeviceImp *pSysmanDevice = new SysmanDeviceImp(&executionEnvironment, rootDeviceIndex);
|
|
DEBUG_BREAK_IF(!pSysmanDevice);
|
|
if (pSysmanDevice->init() != ZE_RESULT_SUCCESS) {
|
|
delete pSysmanDevice;
|
|
pSysmanDevice = nullptr;
|
|
}
|
|
return pSysmanDevice;
|
|
}
|
|
|
|
ze_result_t SysmanDevice::fabricPortGet(zes_device_handle_t hDevice, uint32_t *pCount, zes_fabric_port_handle_t *phPort) {
|
|
auto pSysmanDevice = L0::Sysman::SysmanDevice::fromHandle(hDevice);
|
|
return pSysmanDevice->fabricPortGet(pCount, phPort);
|
|
}
|
|
ze_result_t SysmanDevice::memoryGet(zes_device_handle_t hDevice, uint32_t *pCount, zes_mem_handle_t *phMemory) {
|
|
auto pSysmanDevice = L0::Sysman::SysmanDevice::fromHandle(hDevice);
|
|
return pSysmanDevice->memoryGet(pCount, phMemory);
|
|
}
|
|
|
|
ze_result_t SysmanDevice::powerGet(zes_device_handle_t hDevice, uint32_t *pCount, zes_pwr_handle_t *phPower) {
|
|
auto pSysmanDevice = L0::Sysman::SysmanDevice::fromHandle(hDevice);
|
|
if (pSysmanDevice == nullptr) {
|
|
return ZE_RESULT_ERROR_UNINITIALIZED;
|
|
}
|
|
return pSysmanDevice->powerGet(pCount, phPower);
|
|
}
|
|
|
|
ze_result_t SysmanDevice::powerGetCardDomain(zes_device_handle_t hDevice, zes_pwr_handle_t *phPower) {
|
|
auto pSysmanDevice = L0::Sysman::SysmanDevice::fromHandle(hDevice);
|
|
if (pSysmanDevice == nullptr) {
|
|
return ZE_RESULT_ERROR_UNINITIALIZED;
|
|
}
|
|
return pSysmanDevice->powerGetCardDomain(phPower);
|
|
}
|
|
|
|
} // namespace Sysman
|
|
} // namespace L0
|