feature: Adding support to clCreateProgramWithIL

Related-To: NEO-15701
Signed-off-by: Aleksandra Nizio <aleksandra.nizio@intel.com>
This commit is contained in:
Aleksandra Nizio
2025-09-29 15:19:56 +00:00
committed by Compute-Runtime-Automation
parent 7aa5349ba1
commit 2b8acba2f1
11 changed files with 63 additions and 22 deletions

View File

@@ -0,0 +1,14 @@
/*
* Copyright (C) 2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "opencl/source/program/program.h"
namespace NEO {
cl_int Program::createFromILExt(Context *context, const void *il, size_t length) {
return CL_INVALID_BINARY;
}
} // namespace NEO