katago: Use stdenv.hostPlatform.avx2Support

This commit is contained in:
Sandro Jäckel 2021-01-04 10:59:14 +01:00
parent 9932103ead
commit 9daf938d37
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -14,11 +14,12 @@
, ocl-icd ? null
, gperftools ? null
, eigen ? null
, enableAVX2 ? false
, enableAVX2 ? stdenv.hostPlatform.avx2Support
, enableBigBoards ? false
, enableCuda ? false
, enableGPU ? true
, enableTcmalloc ? true}:
, enableTcmalloc ? true
}:
assert !enableGPU -> (
eigen != null &&
@ -103,8 +104,6 @@ in env.mkDerivation rec {
--prefix LD_LIBRARY_PATH : "/run/opengl-driver/lib"
'';
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Go engine modeled after AlphaGo Zero";
homepage = "https://github.com/lightvector/katago";