mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-28 00:03:14 +08:00
Related-To: NEO-3220 Change-Id: Ib85a1f4fd69b47bc8e819a29cc4adec73bda72e0 Signed-off-by: Pawel Wilma <pawel.wilma@intel.com>
24 lines
652 B
C++
24 lines
652 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "runtime/command_queue/command_queue_hw.h"
|
|
|
|
namespace NEO {
|
|
|
|
struct DispatchGlobalsArgs {
|
|
};
|
|
|
|
template <typename GfxFamily>
|
|
cl_int CommandQueueHw<GfxFamily>::enqueueInitDispatchGlobals(DispatchGlobalsArgs *dispatchGlobalsArgs,
|
|
cl_uint numEventsInWaitList,
|
|
const cl_event *eventWaitList,
|
|
cl_event *event) {
|
|
return CL_INVALID_VALUE;
|
|
}
|
|
} // namespace NEO
|