SWDEV-110636 - added if statement so that output of clBuildProgram follows opencl specification

Change-Id: I4ee000008c52a0bbdb47e94a8e1b5faf28c3bfe6
This commit is contained in:
Victor Zhang
2022-12-19 23:21:37 -05:00
committed by victzhan
parent 9dcb6a3d4d
commit 1fe9918576
+3
View File
@@ -500,6 +500,9 @@ RUNTIME_ENTRY(cl_int, clBuildProgram,
if ((num_devices > 0 && device_list == NULL) || (num_devices == 0 && device_list != NULL)) {
return CL_INVALID_VALUE;
}
if (pfn_notify == nullptr && user_data != nullptr) {
return CL_INVALID_VALUE;
}
amd::Program* amdProgram = as_amd(program);