We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 86bd933 + 1e8c014 commit bb063dfCopy full SHA for bb063df
python/cugraph/cugraph/utilities/utils.py
@@ -479,7 +479,7 @@ def create_list_series_from_2d_ar(ar, index):
479
n_rows, n_cols = ar.shape
480
data = as_column(ar.flatten())
481
offset_col = as_column(
482
- cp.arange(start=0, stop=len(data) + 1, step=n_cols), dtype="int32"
+ cp.arange(start=0, stop=len(data) + 1, step=n_cols), dtype=cp.dtype(cp.int32)
483
)
484
mask_col = cp.full(shape=n_rows, fill_value=True)
485
mask = as_column(mask_col).as_mask()
0 commit comments