mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-27 07:44:16 +08:00
Change-Id: I95fc24043f8f603d6270323b0f23a78f9d8ad2f1 Signed-off-by: mraghuwa <mayank.raghuwanshi@intel.com>
51 lines
1.2 KiB
C++
51 lines
1.2 KiB
C++
/*
|
|
* Copyright (C) 2020 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"
|
|
|
|
namespace L0 {
|
|
|
|
MemoryHandleContext::~MemoryHandleContext() {
|
|
for (Memory *pMemory : handleList) {
|
|
delete pMemory;
|
|
}
|
|
}
|
|
|
|
void MemoryHandleContext::createHandle() {
|
|
Memory *pMemory = new MemoryImp(pOsSysman);
|
|
if (pMemory->initSuccess == true) {
|
|
handleList.push_back(pMemory);
|
|
} else {
|
|
delete pMemory;
|
|
}
|
|
}
|
|
|
|
ze_result_t MemoryHandleContext::init() {
|
|
createHandle();
|
|
return ZE_RESULT_SUCCESS;
|
|
}
|
|
|
|
ze_result_t MemoryHandleContext::memoryGet(uint32_t *pCount, zes_mem_handle_t *phMemory) {
|
|
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
|