2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2018-09-18 15:11:08 +08:00
|
|
|
* Copyright (C) 2017-2018 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "hw_cmds.h"
|
|
|
|
#include "runtime/command_queue/command_queue_hw.h"
|
|
|
|
#include "runtime/command_stream/command_stream_receiver.h"
|
|
|
|
#include "runtime/helpers/kernel_commands.h"
|
|
|
|
#include "runtime/helpers/string.h"
|
|
|
|
#include "runtime/mem_obj/buffer.h"
|
|
|
|
#include "runtime/memory_manager/surface.h"
|
|
|
|
#include "runtime/built_ins/built_ins.h"
|
|
|
|
#include <new>
|
|
|
|
|
|
|
|
namespace OCLRT {
|
|
|
|
|
|
|
|
template <typename GfxFamily>
|
|
|
|
cl_int CommandQueueHw<GfxFamily>::enqueueWriteBuffer(
|
|
|
|
Buffer *buffer,
|
|
|
|
cl_bool blockingWrite,
|
|
|
|
size_t offset,
|
|
|
|
size_t size,
|
|
|
|
const void *ptr,
|
|
|
|
cl_uint numEventsInWaitList,
|
|
|
|
const cl_event *eventWaitList,
|
|
|
|
cl_event *event) {
|
|
|
|
|
|
|
|
cl_int retVal = CL_SUCCESS;
|
2018-02-07 21:48:24 +08:00
|
|
|
auto isMemTransferNeeded = buffer->isMemObjZeroCopy() ? buffer->checkIfMemoryTransferIsRequired(offset, 0, ptr, CL_COMMAND_READ_BUFFER) : true;
|
2017-12-21 07:45:38 +08:00
|
|
|
if ((DebugManager.flags.DoCpuCopyOnWriteBuffer.get() ||
|
|
|
|
buffer->isReadWriteOnCpuAllowed(blockingWrite, numEventsInWaitList, const_cast<void *>(ptr), size)) &&
|
|
|
|
context->getDevice(0)->getDeviceInfo().cpuCopyAllowed) {
|
2018-01-11 22:42:55 +08:00
|
|
|
if (!isMemTransferNeeded) {
|
2018-02-18 05:26:28 +08:00
|
|
|
TransferProperties transferProperties(buffer, CL_COMMAND_MARKER, 0, true, &offset, &size, const_cast<void *>(ptr));
|
2018-02-09 05:59:03 +08:00
|
|
|
EventsRequest eventsRequest(numEventsInWaitList, eventWaitList, event);
|
|
|
|
cpuDataTransferHandler(transferProperties, eventsRequest, retVal);
|
|
|
|
|
2018-01-11 22:42:55 +08:00
|
|
|
if (event) {
|
|
|
|
auto pEvent = castToObjectOrAbort<Event>(*event);
|
|
|
|
pEvent->setCmdType(CL_COMMAND_WRITE_BUFFER);
|
|
|
|
}
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2018-01-11 22:42:55 +08:00
|
|
|
if (context->isProvidingPerformanceHints()) {
|
|
|
|
context->providePerformanceHint(CL_CONTEXT_DIAGNOSTICS_LEVEL_GOOD_INTEL, CL_ENQUEUE_WRITE_BUFFER_DOESNT_REQUIRE_COPY_DATA, static_cast<cl_mem>(buffer), ptr);
|
|
|
|
}
|
|
|
|
return retVal;
|
|
|
|
}
|
2018-02-18 05:26:28 +08:00
|
|
|
TransferProperties transferProperties(buffer, CL_COMMAND_WRITE_BUFFER, 0, true, &offset, &size, const_cast<void *>(ptr));
|
2018-02-09 05:59:03 +08:00
|
|
|
EventsRequest eventsRequest(numEventsInWaitList, eventWaitList, event);
|
|
|
|
cpuDataTransferHandler(transferProperties, eventsRequest, retVal);
|
|
|
|
|
2017-12-21 07:45:38 +08:00
|
|
|
return retVal;
|
|
|
|
}
|
|
|
|
MultiDispatchInfo dispatchInfo;
|
2018-01-11 22:42:55 +08:00
|
|
|
if (!isMemTransferNeeded) {
|
|
|
|
NullSurface s;
|
|
|
|
Surface *surfaces[] = {&s};
|
|
|
|
enqueueHandler<CL_COMMAND_MARKER>(
|
|
|
|
surfaces,
|
|
|
|
blockingWrite == CL_TRUE,
|
|
|
|
dispatchInfo,
|
|
|
|
numEventsInWaitList,
|
|
|
|
eventWaitList,
|
|
|
|
event);
|
|
|
|
if (event) {
|
|
|
|
auto pEvent = castToObjectOrAbort<Event>(*event);
|
|
|
|
pEvent->setCmdType(CL_COMMAND_WRITE_BUFFER);
|
|
|
|
}
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2018-01-11 22:42:55 +08:00
|
|
|
if (context->isProvidingPerformanceHints()) {
|
|
|
|
context->providePerformanceHint(CL_CONTEXT_DIAGNOSTICS_LEVEL_GOOD_INTEL, CL_ENQUEUE_WRITE_BUFFER_DOESNT_REQUIRE_COPY_DATA, static_cast<cl_mem>(buffer), ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
return CL_SUCCESS;
|
|
|
|
}
|
2018-08-22 19:57:21 +08:00
|
|
|
auto &builder = getDevice().getExecutionEnvironment()->getBuiltIns()->getBuiltinDispatchInfoBuilder(EBuiltInOps::CopyBufferToBuffer,
|
|
|
|
this->getContext(), this->getDevice());
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2018-08-13 18:24:17 +08:00
|
|
|
BuiltInOwnershipWrapper builtInLock(builder, this->context);
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2018-02-09 05:52:58 +08:00
|
|
|
void *srcPtr = const_cast<void *>(ptr);
|
|
|
|
|
2018-02-28 19:09:48 +08:00
|
|
|
HostPtrSurface hostPtrSurf(srcPtr, size, true);
|
2018-02-09 05:52:58 +08:00
|
|
|
MemObjSurface bufferSurf(buffer);
|
|
|
|
Surface *surfaces[] = {&bufferSurf, &hostPtrSurf};
|
|
|
|
|
|
|
|
if (size != 0) {
|
|
|
|
bool status = createAllocationForHostSurface(hostPtrSurf);
|
|
|
|
if (!status) {
|
|
|
|
return CL_OUT_OF_RESOURCES;
|
|
|
|
}
|
|
|
|
srcPtr = reinterpret_cast<void *>(hostPtrSurf.getAllocation()->getGpuAddressToPatch());
|
|
|
|
}
|
|
|
|
|
2017-12-21 07:45:38 +08:00
|
|
|
BuiltinDispatchInfoBuilder::BuiltinOpParams dc;
|
2018-02-09 05:52:58 +08:00
|
|
|
dc.srcPtr = srcPtr;
|
2017-12-21 07:45:38 +08:00
|
|
|
dc.dstMemObj = buffer;
|
|
|
|
dc.dstOffset = {offset, 0, 0};
|
|
|
|
dc.size = {size, 0, 0};
|
|
|
|
builder.buildDispatchInfos(dispatchInfo, dc);
|
|
|
|
|
|
|
|
enqueueHandler<CL_COMMAND_WRITE_BUFFER>(
|
|
|
|
surfaces,
|
|
|
|
blockingWrite == CL_TRUE,
|
|
|
|
dispatchInfo,
|
|
|
|
numEventsInWaitList,
|
|
|
|
eventWaitList,
|
|
|
|
event);
|
|
|
|
|
|
|
|
if (context->isProvidingPerformanceHints()) {
|
|
|
|
context->providePerformanceHint(CL_CONTEXT_DIAGNOSTICS_LEVEL_NEUTRAL_INTEL, CL_ENQUEUE_WRITE_BUFFER_REQUIRES_COPY_DATA, static_cast<cl_mem>(buffer));
|
|
|
|
}
|
|
|
|
|
|
|
|
return CL_SUCCESS;
|
|
|
|
}
|
|
|
|
} // namespace OCLRT
|