mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
katago: Use stdenv.hostPlatform.avx2Support
This commit is contained in:
parent
9932103ead
commit
9daf938d37
1 changed files with 3 additions and 4 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue