mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 17:29:14 +08:00
Change-Id: Iab64ad133fe96402d9577b64380472729f0190a8 Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
18 lines
350 B
C++
18 lines
350 B
C++
/*
|
|
* Copyright (C) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/helpers/queue_helpers.h"
|
|
|
|
namespace OCLRT {
|
|
bool processExtraTokens(Device *&device, const cl_queue_properties *property) {
|
|
return false;
|
|
}
|
|
|
|
void CommandQueue::processProperties(const cl_queue_properties *properties) {
|
|
}
|
|
} // namespace OCLRT
|