-
Notifications
You must be signed in to change notification settings - Fork 532
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes for CPU package #5599
Fixes for CPU package #5599
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great! Had one question, but it does not affect correctness, so pre-approving.
_input_type_to_str[CudfSeries] = "cudf" | ||
_input_type_to_str[CudfDataFrame] = "cudf" | ||
_input_type_to_str[NumbaDeviceNDArrayBase] = "numba" | ||
except UnavailableError: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will this exception ever be thrown? I don't think we're doing anything non-trivial with these types.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, it gets thrown on at import time by just trying to create the dictionary entries with keys of GPU packages
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, of course! It needs to check hashability. Hmmm... That's something we might want to tweak in the future.
/merge |
This PR fixes a few issues ran into while testing the different supported algorithms: