-
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
Missing device_storage_dispatch
change affecting cudf::gather
#7449
Missing device_storage_dispatch
change affecting cudf::gather
#7449
Conversation
rerun tests |
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 good. Just update the copyright in cpp/src/lists/copying/gather.cu
Thanks this fixed most of the issues I was seeing. I am still seeing a problem with window functions when doing a collect list on structs with decimal values in them. @mythrocks does the collect list functionality use a scatter or a gather? |
Do you have a test I can used to test in |
I have not verified yet if this test passes before the change, but it fails now. diff --git a/cpp/tests/collect_list/collect_list_test.cpp b/cpp/tests/collect_list/collect_list_test.cpp
index 98a7b2bacc..f50061aeb9 100644
--- a/cpp/tests/collect_list/collect_list_test.cpp
+++ b/cpp/tests/collect_list/collect_list_test.cpp
@@ -42,7 +42,7 @@ struct TypedCollectListTest : public CollectListTest {
};
using TypesForTest = cudf::test::
- Concat<cudf::test::IntegralTypes, cudf::test::FloatingPointTypes, cudf::test::DurationTypes>;
+ Concat<cudf::test::IntegralTypes, cudf::test::FloatingPointTypes, cudf::test::DurationTypes, cudf::test::FixedPointTypes>;
TYPED_TEST_CASE(TypedCollectListTest, TypesForTest);
|
Just verified that the changes to collect_list_test.cpp pass if go back |
@revans2 Just pushed a second fix. Let me know if this resolves the test / if there are any remaining. |
I'm building it now and will let you know when I have results |
+1 this fixed the last test that we had failing. I will rerun all of our tests just to be sure, but it is looking a lot better. |
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.
All of my tests passed
@gpucibot merge |
Codecov Report
@@ Coverage Diff @@
## branch-0.19 #7449 +/- ##
===============================================
+ Coverage 81.80% 82.24% +0.43%
===============================================
Files 101 101
Lines 16695 17069 +374
===============================================
+ Hits 13658 14039 +381
+ Misses 3037 3030 -7
Continue to review full report at Codecov.
|
Resolves #7441
Missed a necessary change to
type_dispatcher
invocation in/lists/copyting/gather.cu
in #7419