Check and correct if necessary code broken from cudf unique
and drop_duplicates
behavior change
#3615
Labels
unique
and drop_duplicates
behavior change
#3615
From comment here
cuDF has changed the behavior of
unique
anddrop_duplicates
. If cuGraph is relying onunique()
calls from cuDF to give sorted results, they may need to be replaced byunique().sort_values()
. This change caused test failures for cuML (resolved by this PR) and I suspect cuGraph may have some of the same problems -- but may not be caught by tests except this one failure in cugraph-pyg. It may be worthwhile for someone to review uses ofunique
/drop_duplicates
in cuGraph for any issues that tests might not be catching.Specific ones that jump out as potentially hazardous:
cc @bdice
The text was updated successfully, but these errors were encountered: