2018-09-21 14:06:35 +02:00
|
|
|
/*
|
2021-03-22 15:26:03 +00:00
|
|
|
* Copyright (C) 2019-2021 Intel Corporation
|
2018-09-21 14:06:35 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/debug_settings/debug_settings_manager.h"
|
2020-02-24 10:22:30 +01:00
|
|
|
|
2021-04-06 09:51:30 +00:00
|
|
|
#include "opencl/source/helpers/cl_hw_helper.h"
|
2020-02-22 22:50:57 +01:00
|
|
|
#include "opencl/source/kernel/kernel.h"
|
2018-09-21 14:06:35 +02:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2021-07-01 16:07:58 +00:00
|
|
|
|
2020-11-04 13:03:51 +00:00
|
|
|
int32_t Kernel::setAdditionalKernelExecInfoWithParam(uint32_t paramName, size_t paramValueSize, const void *paramValue) {
|
2020-09-02 11:38:54 +02:00
|
|
|
return CL_INVALID_VALUE;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-18 16:33:07 +02:00
|
|
|
} // namespace NEO
|