mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-25 05:24:02 +08:00
Add clEnqueueNDRangeKernelINTEL API
Related-To: NEO-2712 Change-Id: If1d16d9d626871a9dc4b19282f9edc5786ffa398 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
This commit is contained in:
committed by
sys_ocldev
parent
7be937c226
commit
82bc594af0
54
core/program/sync_buffer_handler.cpp
Normal file
54
core/program/sync_buffer_handler.cpp
Normal file
@@ -0,0 +1,54 @@
|
||||
/*
|
||||
* 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
|
||||
Reference in New Issue
Block a user