mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-26 07:00:17 +08:00
Change-Id: I1419231a721fab210e166d26a264cae04d661dcd Signed-off-by: Jaime Arteaga <jaime.a.arteaga.molina@intel.com> Signed-off-by: macabral <matias.a.cabral@intel.com> Signed-off-by: davidoli <david.olien@intel.com> Signed-off-by: Aravind Gopalakrishnan <Aravind.Gopalakrishnan@intel.com> Signed-off-by: Spruit, Neil R <neil.r.spruit@intel.com> Signed-off-by: Latif, Raiyan <raiyan.latif@intel.com> Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
51 lines
1.2 KiB
C++
51 lines
1.2 KiB
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "level_zero/tools/source/sysman/engine/engine_imp.h"
|
|
|
|
#include "level_zero/core/source/device/device.h"
|
|
|
|
namespace L0 {
|
|
|
|
ze_result_t EngineImp::engineGetActivity(zes_engine_stats_t *pStats) {
|
|
ze_result_t result = pOsEngine->getActiveTime(pStats->activeTime);
|
|
if (result != ZE_RESULT_SUCCESS) {
|
|
return result;
|
|
}
|
|
return pOsEngine->getTimeStamp(pStats->timestamp);
|
|
}
|
|
|
|
ze_result_t EngineImp::engineGetProperties(zes_engine_properties_t *pProperties) {
|
|
*pProperties = engineProperties;
|
|
return ZE_RESULT_SUCCESS;
|
|
}
|
|
|
|
void EngineImp::init(zes_engine_group_t type) {
|
|
if (pOsEngine->getEngineGroup(type) == ZE_RESULT_SUCCESS) {
|
|
this->initSuccess = true;
|
|
} else {
|
|
this->initSuccess = false;
|
|
}
|
|
engineProperties.type = type;
|
|
engineProperties.onSubdevice = false;
|
|
engineProperties.subdeviceId = 0;
|
|
}
|
|
|
|
EngineImp::EngineImp(OsSysman *pOsSysman, zes_engine_group_t type) {
|
|
pOsEngine = OsEngine::create(pOsSysman);
|
|
init(type);
|
|
}
|
|
|
|
EngineImp::~EngineImp() {
|
|
if (nullptr != pOsEngine) {
|
|
delete pOsEngine;
|
|
pOsEngine = nullptr;
|
|
}
|
|
}
|
|
|
|
} // namespace L0
|