mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-19 16:24:18 +08:00
Related-To: LOCI-4138 Signed-off-by: Joshua Santosh Ranjan <joshua.santosh.ranjan@intel.com>
76 lines
2.4 KiB
C++
76 lines
2.4 KiB
C++
/*
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "level_zero/sysman/source/engine/engine.h"
|
|
|
|
#include "shared/source/helpers/basic_math.h"
|
|
|
|
#include "level_zero/sysman/source/engine/engine_imp.h"
|
|
#include "level_zero/sysman/source/os_sysman.h"
|
|
#include "level_zero/sysman/source/sysman_device_imp.h"
|
|
|
|
namespace L0 {
|
|
namespace Sysman {
|
|
|
|
EngineHandleContext::EngineHandleContext(OsSysman *pOsSysman) {
|
|
this->pOsSysman = pOsSysman;
|
|
}
|
|
|
|
EngineHandleContext::~EngineHandleContext() {
|
|
releaseEngines();
|
|
}
|
|
|
|
void EngineHandleContext::createHandle(zes_engine_group_t engineType, uint32_t engineInstance, uint32_t subDeviceId, ze_bool_t onSubdevice) {
|
|
Engine *pEngine = new EngineImp(pOsSysman, engineType, engineInstance, subDeviceId, onSubdevice);
|
|
if (pEngine->initSuccess == true) {
|
|
handleList.push_back(pEngine);
|
|
} else {
|
|
delete pEngine;
|
|
}
|
|
}
|
|
|
|
void EngineHandleContext::init(uint32_t subDeviceCount) {
|
|
std::set<std::pair<zes_engine_group_t, EngineInstanceSubDeviceId>> engineGroupInstance = {}; // set contains pair of engine group and struct containing engine instance and subdeviceId
|
|
OsEngine::getNumEngineTypeAndInstances(engineGroupInstance, pOsSysman);
|
|
for (auto itr = engineGroupInstance.begin(); itr != engineGroupInstance.end(); ++itr) {
|
|
for (uint32_t subDeviceId = 0; subDeviceId <= subDeviceCount; subDeviceId++) {
|
|
if (subDeviceId == itr->second.second) {
|
|
const auto isSubDevice = subDeviceCount > 0;
|
|
createHandle(itr->first, itr->second.first, subDeviceId, isSubDevice);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void EngineHandleContext::releaseEngines() {
|
|
for (Engine *pEngine : handleList) {
|
|
delete pEngine;
|
|
}
|
|
handleList.clear();
|
|
}
|
|
|
|
ze_result_t EngineHandleContext::engineGet(uint32_t *pCount, zes_engine_handle_t *phEngine) {
|
|
std::call_once(initEngineOnce, [this]() {
|
|
this->init(pOsSysman->getSubDeviceCount());
|
|
this->engineInitDone = true;
|
|
});
|
|
uint32_t handleListSize = static_cast<uint32_t>(handleList.size());
|
|
uint32_t numToCopy = std::min(*pCount, handleListSize);
|
|
if (0 == *pCount || *pCount > handleListSize) {
|
|
*pCount = handleListSize;
|
|
}
|
|
if (nullptr != phEngine) {
|
|
for (uint32_t i = 0; i < numToCopy; i++) {
|
|
phEngine[i] = handleList[i]->toHandle();
|
|
}
|
|
}
|
|
return ZE_RESULT_SUCCESS;
|
|
}
|
|
|
|
} // namespace Sysman
|
|
} // namespace L0
|