mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 18:37:46 +08:00
feature: Adding support to clCreateProgramWithIL
Related-To: NEO-15701 Signed-off-by: Aleksandra Nizio <aleksandra.nizio@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
7aa5349ba1
commit
2b8acba2f1
14
opencl/source/program/create_ext.cpp
Normal file
14
opencl/source/program/create_ext.cpp
Normal 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
|
||||
Reference in New Issue
Block a user