Files
compute-runtime/core/program/sync_buffer_handler.cpp
Filip Hazubski 82bc594af0 Add clEnqueueNDRangeKernelINTEL API
Related-To: NEO-2712

Change-Id: If1d16d9d626871a9dc4b19282f9edc5786ffa398
Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
2019-12-04 17:11:28 +01:00

55 lines
1.8 KiB
C++

/*
* Copyright (C) 2019 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "core/program/sync_buffer_handler.h"
#include "core/memory_manager/graphics_allocation.h"
#include "runtime/command_stream/command_stream_receiver.h"
#include "runtime/kernel/kernel.h"
#include "runtime/memory_manager/memory_manager.h"
namespace NEO {
SyncBufferHandler::~SyncBufferHandler() {
memoryManager.checkGpuUsageAndDestroyGraphicsAllocations(graphicsAllocation);
};
SyncBufferHandler::SyncBufferHandler(Device &device)
: device(device), memoryManager(*device.getMemoryManager()) {
allocateNewBuffer();
}
void SyncBufferHandler::prepareForEnqueue(size_t workGroupsCount, Kernel &kernel, CommandStreamReceiver &csr) {
auto requiredSize = workGroupsCount;
std::lock_guard<std::mutex> guard(this->mutex);
bool isCurrentBufferFull = (usedBufferSize + requiredSize > bufferSize);
if (isCurrentBufferFull) {
memoryManager.checkGpuUsageAndDestroyGraphicsAllocations(graphicsAllocation);
allocateNewBuffer();
usedBufferSize = 0;
}
kernel.patchSyncBuffer(device, graphicsAllocation, usedBufferSize);
csr.makeResident(*graphicsAllocation);
usedBufferSize += requiredSize;
}
void SyncBufferHandler::allocateNewBuffer() {
AllocationProperties allocationProperties{device.getRootDeviceIndex(), true, bufferSize,
GraphicsAllocation::AllocationType::LINEAR_STREAM,
false, false, static_cast<uint32_t>(device.getDeviceBitfield().to_ulong())};
graphicsAllocation = memoryManager.allocateGraphicsMemoryWithProperties(allocationProperties);
UNRECOVERABLE_IF(graphicsAllocation == nullptr);
auto cpuPointer = graphicsAllocation->getUnderlyingBuffer();
std::memset(cpuPointer, 0, bufferSize);
}
} // namespace NEO