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
|