Skip to content

Commit

Permalink
Merge branch 'branch-24.10' into pyg-shuffle-global
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbarghi-nv authored Aug 8, 2024
2 parents 63065f5 + d92c257 commit a87e9ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/cugraph/cugraph/utilities/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2020-2023, NVIDIA CORPORATION.
# Copyright (c) 2020-2024, NVIDIA CORPORATION.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
Expand Down Expand Up @@ -530,7 +530,7 @@ def create_list_series_from_2d_ar(ar, index):
null_count=0,
children=(offset_col, data),
)
return cudf.Series(lc, index=index)
return cudf.Series._from_column(lc, index=index)


def create_directory_with_overwrite(directory):
Expand Down

0 comments on commit a87e9ff

Please sign in to comment.