Skip to content

Commit bb063df

Browse files
authored
Merge branch 'branch-25.04' into bug_remove_multi_edges
2 parents 86bd933 + 1e8c014 commit bb063df

File tree

1 file changed

+1
-1
lines changed
  • python/cugraph/cugraph/utilities

1 file changed

+1
-1
lines changed

python/cugraph/cugraph/utilities/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ def create_list_series_from_2d_ar(ar, index):
479479
n_rows, n_cols = ar.shape
480480
data = as_column(ar.flatten())
481481
offset_col = as_column(
482-
cp.arange(start=0, stop=len(data) + 1, step=n_cols), dtype="int32"
482+
cp.arange(start=0, stop=len(data) + 1, step=n_cols), dtype=cp.dtype(cp.int32)
483483
)
484484
mask_col = cp.full(shape=n_rows, fill_value=True)
485485
mask = as_column(mask_col).as_mask()

0 commit comments

Comments
 (0)