You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The sort_values implementation in Dask-cuDF produces correct results, but does not raise an error or warning when unsupprted kwargs are supplied. A critical example is inplace.
Describe the bug
The
sort_values
implementation in Dask-cuDF produces correct results, but does not raise an error or warning when unsupprted kwargs are supplied. A critical example isinplace
.Steps/Code to reproduce bug
Produces unsorted result:
This is not because
sort_values
does not sort the DataFrame, but because the result is not stored "in place".Expected behavior
I would expect dask_cudf to raise an error when an unsupported argument (like
inplace
) is used.Additional context
Thanks to @bschifferer for bringing this problem to my attention.
The text was updated successfully, but these errors were encountered: