mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 04:12:57 +08:00
Change-Id: I5daed24c36db8f5da143db8665b4353582dbc94b Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
26 lines
610 B
C++
26 lines
610 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/helpers/queue_helpers.h"
|
|
|
|
namespace OCLRT {
|
|
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 OCLRT
|