-
Notifications
You must be signed in to change notification settings - Fork 65
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
Fix row conversion test #1577
Fix row conversion test #1577
Conversation
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
build |
1 similar comment
build |
re-trigger to get a faster node for premerge. the previous one has a super slow CPU for compiling |
build |
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.
passed the test.
@ttnghia are we OK to merge this one first to unblock other changes first?
Sure. Please go ahead. |
@ttnghia can you add a description of the workaround to the PR |
Done. |
This is a temporary workaround to fix #1567.
Instead of passing transform iterators into
thrust::inclusive_scan
, we evaluate the input values and pass in the pointers instead. This helps fixing the (mysterious) memory issue reported in #1567. We still don't know what causes it and still need to investigate further.