mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
Change-Id: I29fb4e6a91e9fc32f5017eb966d478f51b3b3487 Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
35 lines
953 B
C++
35 lines
953 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "core/memory_manager/surface.h"
|
|
#include "runtime/command_queue/command_queue_hw.h"
|
|
#include "runtime/command_stream/command_stream_receiver.h"
|
|
#include "runtime/device/device.h"
|
|
#include "runtime/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
|