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