-
Notifications
You must be signed in to change notification settings - Fork 908
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
Migrate reshape.pxd to pylibcudf #15827
Migrate reshape.pxd to pylibcudf #15827
Conversation
This should be green and ready for a look now (tests have been added). |
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.
LGTM
Co-authored-by: Matthew Roeschke <[email protected]>
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.
One small suggestion, otherwise looks great to me!
arrow_tbl = pa.Table.from_arrays(reshape_data, names=["a", "b"]) | ||
plc_tbl = plc.interop.from_arrow(arrow_tbl) |
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.
Might as well pull this out into a fixture too so that it's only done once (especially since you parametrize the tile test below so it'll do this four times).
/merge |
Description
xref #15162
Checklist
Not sure what to do about byte_cast, which appears in the reshape.hpp file but isn't used by cudf-python (only by java and cpp).