ubuntu 18 安装xgboost GPU版本

Posted zhoubiyu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu 18 安装xgboost GPU版本相关的知识,希望对你有一定的参考价值。

综合上述两个帖子:

https://www.cnblogs.com/huadongw/p/6161145.html

https://blog.csdn.net/u011587516/article/details/78995186

先把之前安装的xgboost都卸载干净:

pip uninstall xgboost

确保电脑里安装了cuda。

然后按照下面的步骤来安装GPU版本的xgboost:

$git clone --recursive https://github.com/dmlc/xgboost
$cd xgboost
$mkdir build
$cd build
$cmake .. -DUSE_CUDA=ON
$make -j
$sh build.sh
$cd python-package
$python setup.py install
 
测试GPU
testsenchmark目录下

分别执行

python benchmark.py --tree_method gpu_hist
python benchmark.py --tree_method hist
可以看到,第一个gpu版本的比第二个非GPU版本的快。在实际的代码中,只要在添加下面的参数就行了
param[‘tree_method‘] = ‘gpu_hist‘

 

 

以上是关于ubuntu 18 安装xgboost GPU版本的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu18.04 安装xgboost GPU版配置

Ubuntu18.04 安装xgboost GPU版配置

备忘 ubuntu 18.04 下安装 tensorflow GPU 版本

Ubuntu 18.04 基于NVIDIA 2080安装TensorFlow-GPU 1.13.1

Ubuntu 18.04 64位安装tensorflow-gpu

Ubuntu18.04 + CUDA9.0 + cuDNN7.3 + Tensorflow-gpu-1.12 + Jupyter Notebook深度学习环境配置