mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 21:18:24 +08:00
Change-Id: I9f63b296433ea19d65d5204f7c1f2040238a3148 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
16 lines
294 B
C++
16 lines
294 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/kernel/kernel.h"
|
|
|
|
namespace NEO {
|
|
bool Kernel::requiresCacheFlushCommand(const CommandQueue &commandQueue) const {
|
|
return false;
|
|
}
|
|
void Kernel::reconfigureKernel() {
|
|
}
|
|
} // namespace NEO
|