mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
This change introduces detection of GPU hangs in blocking calls to enqueueHandler() function. Moreover, usages of this function template have been revised and adjusted to check the exit code. Furthermore, enqueueBlit() and dispatchBcsOrGpgpuEnqueue() functions returns value now. ULTs have been added to cover new cases. Signed-off-by: Patryk Wrobel <patryk.wrobel@intel.com> Related-To: NEO-6681
70 lines
2.0 KiB
C++
70 lines
2.0 KiB
C++
/*
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/built_ins/built_ins.h"
|
|
#include "shared/source/command_stream/command_stream_receiver.h"
|
|
|
|
#include "opencl/source/command_queue/command_queue_hw.h"
|
|
#include "opencl/source/helpers/hardware_commands_helper.h"
|
|
#include "opencl/source/helpers/mipmap.h"
|
|
#include "opencl/source/mem_obj/buffer.h"
|
|
#include "opencl/source/mem_obj/image.h"
|
|
#include "opencl/source/memory_manager/mem_obj_surface.h"
|
|
|
|
#include <new>
|
|
|
|
namespace NEO {
|
|
|
|
template <typename GfxFamily>
|
|
cl_int CommandQueueHw<GfxFamily>::enqueueCopyBufferToImage(
|
|
Buffer *srcBuffer,
|
|
Image *dstImage,
|
|
size_t srcOffset,
|
|
const size_t *dstOrigin,
|
|
const size_t *region,
|
|
cl_uint numEventsInWaitList,
|
|
const cl_event *eventWaitList,
|
|
cl_event *event) {
|
|
auto eBuiltInOpsType = EBuiltInOps::CopyBufferToImage3d;
|
|
|
|
if (forceStateless(srcBuffer->getSize())) {
|
|
eBuiltInOpsType = EBuiltInOps::CopyBufferToImage3dStateless;
|
|
}
|
|
|
|
auto &builder = BuiltInDispatchBuilderOp::getBuiltinDispatchInfoBuilder(eBuiltInOpsType,
|
|
this->getClDevice());
|
|
BuiltInOwnershipWrapper builtInLock(builder, this->context);
|
|
|
|
MemObjSurface srcBufferSurf(srcBuffer);
|
|
MemObjSurface dstImgSurf(dstImage);
|
|
Surface *surfaces[] = {&srcBufferSurf, &dstImgSurf};
|
|
|
|
BuiltinOpParams dc;
|
|
dc.srcMemObj = srcBuffer;
|
|
dc.dstMemObj = dstImage;
|
|
dc.srcOffset = {srcOffset, 0, 0};
|
|
dc.dstOffset = dstOrigin;
|
|
dc.size = region;
|
|
if (isMipMapped(dstImage->getImageDesc())) {
|
|
dc.dstMipLevel = findMipLevel(dstImage->getImageDesc().image_type, dstOrigin);
|
|
}
|
|
|
|
MultiDispatchInfo dispatchInfo(dc);
|
|
builder.buildDispatchInfos(dispatchInfo);
|
|
|
|
return enqueueHandler<CL_COMMAND_COPY_BUFFER_TO_IMAGE>(
|
|
surfaces,
|
|
false,
|
|
dispatchInfo,
|
|
numEventsInWaitList,
|
|
eventWaitList,
|
|
event);
|
|
}
|
|
|
|
} // namespace NEO
|