mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-27 07:44:16 +08:00
Add Kernel restrictions
Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
aed3fada28
commit
64eb82efac
@@ -11,11 +11,7 @@
|
||||
#include "opencl/source/kernel/kernel.h"
|
||||
|
||||
namespace NEO {
|
||||
bool Kernel::requiresCacheFlushCommand(const CommandQueue &commandQueue) const {
|
||||
return false;
|
||||
}
|
||||
void Kernel::reconfigureKernel() {
|
||||
}
|
||||
|
||||
int Kernel::setKernelThreadArbitrationPolicy(uint32_t policy) {
|
||||
auto hwInfo = clDevice.getHardwareInfo();
|
||||
auto &hwHelper = NEO::ClHwHelper::get(hwInfo.platform.eRenderCoreFamily);
|
||||
@@ -39,14 +35,8 @@ bool Kernel::requiresPerDssBackedBuffer() const {
|
||||
return DebugManager.flags.ForcePerDssBackedBufferProgramming.get();
|
||||
}
|
||||
|
||||
bool Kernel::requiresLimitedWorkgroupSize() const {
|
||||
return this->isBuiltIn;
|
||||
}
|
||||
|
||||
int32_t Kernel::setAdditionalKernelExecInfoWithParam(uint32_t paramName, size_t paramValueSize, const void *paramValue) {
|
||||
return CL_INVALID_VALUE;
|
||||
}
|
||||
|
||||
void Kernel::updateAuxTranslationRequired() {
|
||||
}
|
||||
} // namespace NEO
|
||||
|
||||
Reference in New Issue
Block a user