mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
Correct Intermediate Language related implementation
Change-Id: Ib2bdd21c255245767df787797bb5cfe05482e489 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
This commit is contained in:
committed by
sys_ocldev
parent
410e3c0ced
commit
da524fa03d
@@ -1382,7 +1382,7 @@ cl_program CL_API_CALL clCreateProgramWithIL(cl_context context,
|
||||
cl_program program = nullptr;
|
||||
retVal = validateObjects(context, il);
|
||||
if (retVal == CL_SUCCESS) {
|
||||
program = Program::createFromIL(
|
||||
program = ProgramFunctions::createFromIL(
|
||||
castToObjectOrAbort<Context>(context),
|
||||
il,
|
||||
length,
|
||||
@@ -4027,7 +4027,7 @@ cl_program CL_API_CALL clCreateProgramWithILKHR(cl_context context,
|
||||
cl_program program = nullptr;
|
||||
retVal = validateObjects(context, il);
|
||||
if (retVal == CL_SUCCESS) {
|
||||
program = Program::createFromIL(
|
||||
program = ProgramFunctions::createFromIL(
|
||||
castToObjectOrAbort<Context>(context),
|
||||
il,
|
||||
length,
|
||||
|
||||
Reference in New Issue
Block a user