mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-28 16:48:45 +08:00
Change-Id: If965c79d70392db26597aea4c2f3b7ae2820fe96 Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
26 lines
606 B
C++
26 lines
606 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/helpers/queue_helpers.h"
|
|
|
|
namespace NEO {
|
|
bool isExtraToken(const cl_queue_properties *property) {
|
|
return false;
|
|
}
|
|
|
|
bool verifyExtraTokens(Device *&device, Context &context, const cl_queue_properties *properties) {
|
|
return true;
|
|
}
|
|
|
|
void CommandQueue::processProperties(const cl_queue_properties *properties) {
|
|
}
|
|
|
|
void getIntelQueueInfo(CommandQueue *queue, cl_command_queue_info paramName, GetInfoHelper &getInfoHelper, cl_int &retVal) {
|
|
retVal = CL_INVALID_VALUE;
|
|
}
|
|
} // namespace NEO
|