Files
compute-runtime/unit_tests/mocks/mock_memory_manager.cpp
Mateusz Jablonski a6be6533ea Simplify Memory Manager API [2/n]
- make AllocationData a protected structure
- use AllocationProperties instead of AllocationFlags
- refactor methods: allocateGraphicsMemory64kb, allocateGraphicsMemoryForSVM
- call AllocateGraphicsMemoryInPreferredPool in AllocateGraphicsMemory
  where there is no host ptr

Change-Id: Ie9ca47b1bccacd00f8486e7d1bf6fb3985e5cb12
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2018-12-11 13:12:00 +01:00

79 lines
2.7 KiB
C++

/*
* Copyright (C) 2017-2018 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "runtime/command_stream/command_stream_receiver.h"
#include "runtime/memory_manager/deferred_deleter.h"
#include "runtime/gmm_helper/gmm.h"
#include "runtime/helpers/surface_formats.h"
#include "unit_tests/mocks/mock_memory_manager.h"
#include <cstring>
namespace OCLRT {
void MockMemoryManager::setDeferredDeleter(DeferredDeleter *deleter) {
deferredDeleter.reset(deleter);
}
void MockMemoryManager::overrideAsyncDeleterFlag(bool newValue) {
asyncDeleterEnabled = newValue;
if (asyncDeleterEnabled && deferredDeleter == nullptr) {
deferredDeleter = createDeferredDeleter();
}
}
GraphicsAllocation *MockMemoryManager::allocateGraphicsMemoryForImage(ImageInfo &imgInfo, Gmm *gmm) {
imgInfo.size *= redundancyRatio;
auto *allocation = OsAgnosticMemoryManager::allocateGraphicsMemoryForImage(imgInfo, gmm);
imgInfo.size /= redundancyRatio;
if (redundancyRatio != 1) {
memset((unsigned char *)allocation->getUnderlyingBuffer(), 0, imgInfo.size * redundancyRatio);
}
return allocation;
}
GraphicsAllocation *MockMemoryManager::allocateGraphicsMemory64kb(AllocationData allocationData) {
allocation64kbPageCreated = true;
preferRenderCompressedFlagPassed = allocationData.flags.preferRenderCompressed;
auto allocation = OsAgnosticMemoryManager::allocateGraphicsMemory64kb(allocationData);
if (allocation) {
allocation->gmm = new Gmm(allocation->getUnderlyingBuffer(), allocationData.size, false, preferRenderCompressedFlagPassed, true);
allocation->gmm->isRenderCompressed = preferRenderCompressedFlagPassed;
}
return allocation;
}
GraphicsAllocation *MockMemoryManager::allocateGraphicsMemoryInDevicePool(const AllocationData &allocationData, AllocationStatus &status) {
if (failInDevicePool) {
status = AllocationStatus::RetryInNonDevicePool;
return nullptr;
}
if (failInDevicePoolWithError) {
status = AllocationStatus::Error;
return nullptr;
}
auto allocation = OsAgnosticMemoryManager::allocateGraphicsMemoryInDevicePool(allocationData, status);
if (allocation) {
allocationInDevicePoolCreated = true;
}
return allocation;
}
GraphicsAllocation *MockMemoryManager::allocateGraphicsMemoryWithAlignment(const AllocationData &allocationData) {
if (failInAllocateWithSizeAndAlignment) {
return nullptr;
}
allocationCreated = true;
return OsAgnosticMemoryManager::allocateGraphicsMemoryWithAlignment(allocationData);
}
FailMemoryManager::FailMemoryManager(int32_t failedAllocationsCount) {
this->failedAllocationsCount = failedAllocationsCount;
}
} // namespace OCLRT