2019-02-03 15:32:12 +00:00
|
|
|
{ config, stdenv, lib, fetchgit, cmake
|
|
|
|
, cudaSupport ? config.cudaSupport or false, cudatoolkit
|
2018-03-05 01:55:24 +00:00
|
|
|
, ncclSupport ? false, nccl
|
2018-03-15 01:17:55 +00:00
|
|
|
, llvmPackages
|
2018-03-05 01:55:24 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert ncclSupport -> cudaSupport;
|
2016-05-14 00:03:54 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "xgboost";
|
2019-06-03 16:18:03 +01:00
|
|
|
version = "0.90";
|
2016-05-14 00:03:54 +01:00
|
|
|
|
|
|
|
# needs submodules
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/dmlc/xgboost";
|
2016-08-13 01:09:01 +01:00
|
|
|
rev = "refs/tags/v${version}";
|
2019-06-03 16:18:03 +01:00
|
|
|
sha256 = "1zs15k9crkiq7bnr4gqq53mkn3w8z9dq4nwlavmfcr5xr5gw2pw4";
|
2016-05-14 00:03:54 +01:00
|
|
|
};
|
|
|
|
|
2018-03-15 01:17:55 +00:00
|
|
|
nativeBuildInputs = [ cmake ] ++ lib.optional stdenv.isDarwin llvmPackages.openmp;
|
2018-03-05 01:55:24 +00:00
|
|
|
|
|
|
|
buildInputs = lib.optional cudaSupport cudatoolkit
|
|
|
|
++ lib.optional ncclSupport nccl;
|
|
|
|
|
|
|
|
cmakeFlags = lib.optionals cudaSupport [ "-DUSE_CUDA=ON" "-DCUDA_HOST_COMPILER=${cudatoolkit.cc}/bin/cc" ]
|
|
|
|
++ lib.optional ncclSupport "-DUSE_NCCL=ON";
|
|
|
|
|
2018-03-15 01:17:55 +00:00
|
|
|
installPhase = let
|
2019-06-15 09:42:19 +01:00
|
|
|
libname = "libxgboost${stdenv.hostPlatform.extensions.sharedLibrary}";
|
2018-03-15 01:17:55 +00:00
|
|
|
in ''
|
2016-05-14 00:03:54 +01:00
|
|
|
mkdir -p $out
|
2018-03-05 01:55:24 +00:00
|
|
|
cp -r ../include $out
|
2018-03-15 01:17:55 +00:00
|
|
|
install -Dm755 ../lib/${libname} $out/lib/${libname}
|
2018-03-05 01:55:24 +00:00
|
|
|
install -Dm755 ../xgboost $out/bin/xgboost
|
2016-05-14 00:03:54 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2016-05-14 00:03:54 +01:00
|
|
|
description = "Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/dmlc/xgboost";
|
2016-05-14 00:38:12 +01:00
|
|
|
license = licenses.asl20;
|
2018-03-15 01:17:55 +00:00
|
|
|
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ];
|
2016-05-14 00:03:54 +01:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
|
|
|
}
|