mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +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
69 lines
2.0 KiB
C++
69 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>::enqueueCopyImageToBuffer(
|
|
Image *srcImage,
|
|
Buffer *dstBuffer,
|
|
const size_t *srcOrigin,
|
|
const size_t *region,
|
|
size_t dstOffset,
|
|
cl_uint numEventsInWaitList,
|
|
const cl_event *eventWaitList,
|
|
cl_event *event) {
|
|
auto eBuiltInOpsType = EBuiltInOps::CopyImage3dToBuffer;
|
|
|
|
if (forceStateless(dstBuffer->getSize())) {
|
|
eBuiltInOpsType = EBuiltInOps::CopyImage3dToBufferStateless;
|
|
}
|
|
auto &builder = BuiltInDispatchBuilderOp::getBuiltinDispatchInfoBuilder(eBuiltInOpsType,
|
|
this->getClDevice());
|
|
BuiltInOwnershipWrapper builtInLock(builder, this->context);
|
|
|
|
MemObjSurface srcImgSurf(srcImage);
|
|
MemObjSurface dstBufferSurf(dstBuffer);
|
|
Surface *surfaces[] = {&srcImgSurf, &dstBufferSurf};
|
|
|
|
BuiltinOpParams dc;
|
|
dc.srcMemObj = srcImage;
|
|
dc.dstMemObj = dstBuffer;
|
|
dc.srcOffset = srcOrigin;
|
|
dc.dstOffset = {dstOffset, 0, 0};
|
|
dc.size = region;
|
|
if (isMipMapped(srcImage->getImageDesc())) {
|
|
dc.srcMipLevel = findMipLevel(srcImage->getImageDesc().image_type, srcOrigin);
|
|
}
|
|
|
|
MultiDispatchInfo dispatchInfo(dc);
|
|
builder.buildDispatchInfos(dispatchInfo);
|
|
|
|
return enqueueHandler<CL_COMMAND_COPY_IMAGE_TO_BUFFER>(
|
|
surfaces,
|
|
false,
|
|
dispatchInfo,
|
|
numEventsInWaitList,
|
|
eventWaitList,
|
|
event);
|
|
}
|
|
|
|
} // namespace NEO
|