-
I'm on Ubuntu 23.10, CPU: AMD Ryzen 5 5600X (12) @ 3.700GHz, GPU: AMD ATI Radeon RX 470/480/570/570X/580/580X/590 I'm using
The question becomes, how can I build without the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
To disable opencl support while building Lc0, pass If you did build Lc0 with the opencl support, you can still use a different backend when running it.
To get the list of the available backends, read the description of the
|
Beta Was this translation helpful? Give feedback.
To disable opencl support while building Lc0, pass
-Dopencl=false
flag to the./build.sh
command (or tomeson setup
if you call it directly).If you did build Lc0 with the opencl support, you can still use a different backend when running it.
To do that, pass
--backend=<backend>
command line argument orBackend <backend>
uci parameter (I'm not sure whether it's possible to do in nibbler though), or create alc0.config
file either in the same directory as thelc0
binary, or at~/.config/lc0/lc0.config
, with the following contents:To get the list of the available backends, read the description of the
--backend
parameter at./lc0 --help
. In your case, the most likely back…