mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
Change-Id: I7fdfaf8e0acc365998cc74306ab715ea3d9c7d72 Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
16 lines
298 B
C++
16 lines
298 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/kernel/kernel.h"
|
|
|
|
namespace OCLRT {
|
|
bool Kernel::requiresCacheFlushCommand(const CommandQueue &commandQueue) const {
|
|
return false;
|
|
}
|
|
void Kernel::reconfigureKernel() {
|
|
}
|
|
} // namespace OCLRT
|