[docs] Update GPU-Tutorial.rst (#1037)

* Update GPU-Tutorial.rst

* Update Installation-Guide.rst

* Update GPU-Tutorial.rst
This commit is contained in:
Qiwei Ye 2017-11-06 22:28:32 +08:00 коммит произвёл GitHub
Родитель 7a166fb322
Коммит 04d4811b4e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -61,6 +61,8 @@ Now we are ready to checkout LightGBM and compile it with GPU support:
cd LightGBM
mkdir build ; cd build
cmake -DUSE_GPU=1 ..
  # if you have installed the NVIDIA OpenGL, please using following instead
# sudo cmake -DUSE_GPU=1 -DOpenCL_LIBRARY=/usr/local/cuda/lib64/libOpenCL.so -OpenCL_INCLUDE_DIR=/usr/local/cuda/include/ ..
make -j$(nproc)
cd ..

Просмотреть файл

@ -227,6 +227,8 @@ To build LightGBM GPU version, run the following commands:
git clone --recursive https://github.com/Microsoft/LightGBM ; cd LightGBM
mkdir build ; cd build
cmake -DUSE_GPU=1 ..
# if you have installed the NVIDIA OpenGL, please using following instead
# sudo cmake -DUSE_GPU=1 -DOpenCL_LIBRARY=/usr/local/cuda/lib64/libOpenCL.so -OpenCL_INCLUDE_DIR=/usr/local/cuda/include/ ..
make -j4
Windows