Fix inclusive scan for large sizes (#6234)

This commit is contained in:
Rory Mitchell
2020-11-03 17:01:43 +13:00
committed by GitHub
parent 7756192906
commit 29745c6df2
7 changed files with 61 additions and 38 deletions

View File

@@ -870,9 +870,6 @@ class DeviceQuantileDMatrix(DMatrix):
You can construct DeviceQuantileDMatrix from cupy/cudf/dlpack.
.. versionadded:: 1.1.0
Known limitation:
The data size (rows * cols) can not exceed 2 ** 31 - 1000
"""
def __init__(self, data, label=None, weight=None, # pylint: disable=W0231

View File

@@ -500,10 +500,6 @@ class DaskDeviceQuantileDMatrix(DaskDMatrix):
max_bin: Number of bins for histogram construction.
Know issue:
The size of each chunk (rows * cols for a single dask chunk/partition) can
not exceed 2 ** 31 - 1000
'''
def __init__(self, client,
data,