]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
Fix handling of "invalid property" when creating OpenCL command queue (#1565)
authorMaarten ter Huurne <redacted>
Tue, 23 May 2023 16:01:15 +0000 (18:01 +0200)
committerGitHub <redacted>
Tue, 23 May 2023 16:01:15 +0000 (19:01 +0300)
The `clCreateCommandQueue()` function will return the code
`CL_INVALID_QUEUE_PROPERTIES` when passed unsupported properties,
not `CL_INVALID_PROPERTY` as the original code was checking for.

ggml-opencl.cpp

index fb007dd25e87b82112b309e97976d722e356c0e3..667f55e795abd3ec0dea782c575a3df90cb6840c 100644 (file)
@@ -488,7 +488,7 @@ void ggml_cl_init(void) {
     CL_CHECK((context = clCreateContext(properties, 1, &device, NULL, NULL, &err), err));
 
     CL_CHECK((queue = clCreateCommandQueue(context, device, CL_QUEUE_OUT_OF_ORDER_EXEC_MODE_ENABLE, &err),
-        (err != CL_INVALID_PROPERTY && err != CL_INVALID_VALUE ? err :
+        (err != CL_INVALID_QUEUE_PROPERTIES && err != CL_INVALID_VALUE ? err :
         (queue = clCreateCommandQueue(context, device, 0, &err), err)
     )));