mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
15 lines
280 B
C++
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
|