36 lines
987 B
C++
36 lines
987 B
C++
/*
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/command_stream/command_stream_receiver.h"
|
|
#include "shared/source/device/device.h"
|
|
#include "shared/source/memory_manager/surface.h"
|
|
|
|
#include "opencl/source/command_queue/command_queue_hw.h"
|
|
#include "opencl/source/event/event.h"
|
|
|
|
#include <new>
|
|
|
|
namespace NEO {
|
|
|
|
template <typename GfxFamily>
|
|
cl_int CommandQueueHw<GfxFamily>::enqueueBarrierWithWaitList(
|
|
cl_uint numEventsInWaitList,
|
|
const cl_event *eventWaitList,
|
|
cl_event *event) {
|
|
NullSurface s;
|
|
Surface *surfaces[] = {&s};
|
|
enqueueHandler<CL_COMMAND_BARRIER>(surfaces,
|
|
false,
|
|
MultiDispatchInfo(),
|
|
numEventsInWaitList,
|
|
eventWaitList,
|
|
event);
|
|
return CL_SUCCESS;
|
|
}
|
|
} // namespace NEO
|