mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-27 07:44:16 +08:00
With this change, init for sysman Scheduler/Memory API would not be done during zeInit. init and thereby Scheduler/Memory API handle creation would be done only when user explicitly requests to enumerate handles using zesDeviceEnumSchedulers/zesDeviceEnumMemory. Related-To: LOCI-3127 Signed-off-by: Kulkarni, Ashwin Kumar <ashwin.kumar.kulkarni@intel.com>
57 lines
1.6 KiB
C++
57 lines
1.6 KiB
C++
/*
|
|
* Copyright (C) 2020-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/helpers/basic_math.h"
|
|
#include "shared/source/memory_manager/memory_manager.h"
|
|
|
|
#include "level_zero/core/source/device/device.h"
|
|
#include "level_zero/tools/source/sysman/memory/memory_imp.h"
|
|
#include "level_zero/tools/source/sysman/os_sysman.h"
|
|
|
|
namespace L0 {
|
|
|
|
MemoryHandleContext::~MemoryHandleContext() {
|
|
for (Memory *pMemory : handleList) {
|
|
delete pMemory;
|
|
}
|
|
}
|
|
|
|
void MemoryHandleContext::createHandle(ze_device_handle_t deviceHandle) {
|
|
Memory *pMemory = new MemoryImp(pOsSysman, deviceHandle);
|
|
if (pMemory->initSuccess == true) {
|
|
handleList.push_back(pMemory);
|
|
} else {
|
|
delete pMemory;
|
|
}
|
|
}
|
|
|
|
ze_result_t MemoryHandleContext::init(std::vector<ze_device_handle_t> &deviceHandles) {
|
|
for (const auto &deviceHandle : deviceHandles) {
|
|
createHandle(deviceHandle);
|
|
}
|
|
return ZE_RESULT_SUCCESS;
|
|
}
|
|
|
|
ze_result_t MemoryHandleContext::memoryGet(uint32_t *pCount, zes_mem_handle_t *phMemory) {
|
|
std::call_once(initMemoryOnce, [this]() {
|
|
this->init(pOsSysman->getDeviceHandles());
|
|
});
|
|
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 != phMemory) {
|
|
for (uint32_t i = 0; i < numToCopy; i++) {
|
|
phMemory[i] = handleList[i]->toHandle();
|
|
}
|
|
}
|
|
return ZE_RESULT_SUCCESS;
|
|
}
|
|
|
|
} // namespace L0
|