-
Hey! When the OpenCL test was ran, I aborted it, and now it doesn't use OpenCL at all, and I have no idea how to make it retry. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
What is the OpenCL test? I added the CLBlast version to the Windows releases, is there a problem you're having with it? I just tested and it seems to work for my integrated graphics on Windows 10, at least. If you're talking about CMake checking for libraries, you can run it again giving the build directory and |
Beta Was this translation helpful? Give feedback.
I think I understand now. This is in ggml-opencl.c.
The first run means first time in the program because it only needs to happen one time. Maybe a bit misleading.
There is no way it won't be run, there is no option to use OpenCL optionally if it is compiled into the program.
If it doesn't show, CLBlast is not compiled in.
If you use make then it is possible that some objects are compiled with different flags, do a
make clean
before or always use the-B
flag.