20 lines
582 B
C
20 lines
582 B
C
![]() |
/*
|
||
|
* Copyright (C) 2019 Intel Corporation
|
||
|
*
|
||
|
* SPDX-License-Identifier: MIT
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
#include "runtime/command_queue/command_queue_hw.h"
|
||
|
|
||
|
namespace NEO {
|
||
|
|
||
|
template <typename GfxFamily>
|
||
|
cl_int CommandQueueHw<GfxFamily>::enqueueResourceBarrier(BarrierCommand *resourceBarrier,
|
||
|
cl_uint numEventsInWaitList,
|
||
|
const cl_event *eventWaitList,
|
||
|
cl_event *event) {
|
||
|
return CL_SUCCESS;
|
||
|
}
|
||
|
} // namespace NEO
|