Katago: Difference between revisions
imported>OmnipotentEntity Removed git, had a dependency when I wrote it, does not anymore. Will error if specified. |
m added headers |
||
| (6 intermediate revisions by 3 users not shown) | |||
| Line 1: | Line 1: | ||
Katago is a very strong go engine. | [https://github.com/lightvector/katago Katago] is a very strong go engine. It has no GUI and has to be used with [https://github.com/sanderland/katrain KaTrain], [https://github.com/featurecat/lizzie Lizzie], [https://github.com/rooklift/ogatak Ogatak], [https://github.com/bernds/q5Go q5Go] or other tools like [https://sabaki.yichuanshen.de/ Sabaki]. | ||
Using CUDA | == Installation== | ||
There are several build options for Katago's derivation. Katago can use either Eigen, OpenCL, CUDA, or TensorRT. By default, it uses OpenCL. To use a different backend override the `backend` attribute, allowed values are "eigen", "opencl", "cuda", and "tensorrt". | |||
For the eigen and cuda backends either version should be more or less functionally the same. | |||
===Using CUDA=== | |||
katago.override { | katago.override { | ||
backend = "cuda"; | |||
cudnn = cudnn_cudatoolkit_10_2; # insert your favorite version of CUDA here | cudnn = cudnn_cudatoolkit_10_2; # insert your favorite version of CUDA here (optional) | ||
cudatoolkit = cudatoolkit_10_2; # I recommend at least CUDA 10, because older versions suffer major performance penalties | cudatoolkit = cudatoolkit_10_2; # I recommend at least CUDA 10, because older versions suffer major performance penalties | ||
stdev = gcc8Stdev; # If you specify CUDA 10 or below you must also override the gcc version, this is due to NVidia compiler support. | |||
} | |||
===Using Eigen=== | |||
katago.override { | |||
backend = "eigen"; | |||
} | } | ||
Using | ===Using TensorRT=== | ||
First download the tensorrt redistributable installer from https://developer.nvidia.com/tensorrt and add it to your nix-store. | |||
Note that you need an NVidia account (free) to do this. | |||
katago.override { | katago.override { | ||
backend = "tensorrt"; | |||
enableTrtPlanCache = true; # Recommended to speed up booting, but uses additional disk space, so not recommended for contrib. | |||
} | } | ||
==Configuration== | |||
If your processor support AVX2, you might want to enable it: | If your processor support AVX2, you might want to enable it: | ||
| Line 35: | Line 51: | ||
} | } | ||
Enabling [https://katagotraining.org/] contributions: | === Contribute to the neural net === | ||
Enabling [https://katagotraining.org/] contributions to the neural net: | |||
katago.override { | katago.override { | ||
enableContrib = true; | enableContrib = true; | ||
} | } | ||
[[Category:Applications]] | |||
[[Category:Gaming]] | |||