Files
compute-runtime/opencl/source/program/create_ext.cpp
Aleksandra Nizio 2b8acba2f1 feature: Adding support to clCreateProgramWithIL
Related-To: NEO-15701
Signed-off-by: Aleksandra Nizio <aleksandra.nizio@intel.com>
2025-09-29 17:48:03 +02:00

15 lines
280 B
C++

/*
* 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