Document CUDA requirement, lack of external memory on GPU (#3624)

* Document fact that GPU doesn't support external memory

* Document CUDA requirement
This commit is contained in:
Philip Hyunsu Cho
2018-08-22 22:47:10 -07:00
committed by GitHub
parent 4ed8a88240
commit cb4de521c1
2 changed files with 10 additions and 0 deletions

View File

@@ -13,6 +13,10 @@ The external memory version takes in the following filename format:
The ``filename`` is the normal path to libsvm file you want to load in, and ``cacheprefix`` is a
path to a cache file that XGBoost will use for external memory cache.
.. note:: External memory is not available with GPU algorithms
External memory is not available when ``tree_method`` is set to ``gpu_exact`` or ``gpu_hist``.
The following code was extracted from `demo/guide-python/external_memory.py <https://github.com/dmlc/xgboost/blob/master/demo/guide-python/external_memory.py>`_:
.. code-block:: python