Files
compute-runtime/runtime/helpers/queue_helpers.cpp
Filip Hazubski 01ff1accfa Refactor queue extra properties validation
Change-Id: If95190159b3885653507c0ffc243d8b45aaa6cc7
Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
2019-03-19 12:27:52 +01:00

22 lines
451 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) {
}
} // namespace OCLRT