Skip to content
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

Refactor mixed_semi_join using cuco::static_set #16230

Merged
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
caea465
Refactor mixed_semi_join using cuco::static_set
srinivasyadav18 Jul 3, 2024
913aed7
Merge branch 'branch-24.08' into mixed_semi_join_refactor
srinivasyadav18 Jul 11, 2024
be82efb
Swap build and probe table
srinivasyadav18 Jul 12, 2024
a8922c5
use size_type as key type for static_set
srinivasyadav18 Jul 12, 2024
dc7b7d1
move hash_probe to host
srinivasyadav18 Jul 12, 2024
5cc0c62
remove load factor for hash set
srinivasyadav18 Jul 12, 2024
6f73ed8
minor optimizations
srinivasyadav18 Jul 12, 2024
08ad9cb
Add cg tuning
srinivasyadav18 Jul 12, 2024
1e7054d
Fix formatting
srinivasyadav18 Jul 18, 2024
c9f3e29
Merge branch 'branch-24.08' into mixed_semi_join_refactor
srinivasyadav18 Jul 18, 2024
cd18674
Merge branch 'branch-24.08' into mixed_semi_join_refactor
srinivasyadav18 Aug 16, 2024
bd2d930
Merge remote-tracking branch 'origin/branch-24.10' into mixed_semi_jo…
srinivasyadav18 Aug 16, 2024
c7f960e
Revert "Ensure managed memory is supported in cudf.pandas. (#16552)"
srinivasyadav18 Aug 16, 2024
b62a786
Merge branch 'branch-24.10' into mixed-semi-join-refactor
mhaseeb123 Sep 5, 2024
8b10e65
Resolve merge conflicts
mhaseeb123 Sep 5, 2024
d49131d
Remove erroneous changelog
mhaseeb123 Sep 5, 2024
b8bf218
Address reviewer comments.
mhaseeb123 Sep 6, 2024
51021ae
Merge branch 'branch-24.10' into mixed_semi_join_refactor
mhaseeb123 Sep 6, 2024
c83e4a6
Re-add CHANGELOG.md
mhaseeb123 Sep 6, 2024
b5e8c79
Fix dependencies and styling
mhaseeb123 Sep 6, 2024
f6d8a8a
Remove magic number for cg size
mhaseeb123 Sep 6, 2024
8359ec7
Minor refactoring
mhaseeb123 Sep 6, 2024
8e9ab66
Merge branch 'branch-24.10' into mixed_semi_join_refactor
mhaseeb123 Sep 6, 2024
18d652f
Merge branch 'mixed_semi_join_refactor' of https://github.com/sriniva…
mhaseeb123 Sep 6, 2024
e458d39
Merge branch 'branch-24.10' into mixed_semi_join_refactor
mhaseeb123 Sep 9, 2024
ee0e606
Merge branch 'branch-24.10' into mixed_semi_join_refactor
mhaseeb123 Sep 9, 2024
ce2cb57
Fix for Java tests and replicate the test in C++
mhaseeb123 Sep 10, 2024
47c0938
Merge branch 'branch-24.10' into mixed_semi_join_refactor
mhaseeb123 Sep 10, 2024
08410dd
Port a previously-failing anti-join test from java to C++
mhaseeb123 Sep 10, 2024
bdc13e2
Merge branch 'mixed_semi_join_refactor' of https://github.com/sriniva…
mhaseeb123 Sep 10, 2024
d860e86
Merge branch 'branch-24.10' into mixed_semi_join_refactor
mhaseeb123 Sep 10, 2024
964bf6a
Minor changes.
mhaseeb123 Sep 10, 2024
1ba2bad
Revert the stale files
mhaseeb123 Sep 10, 2024
7b640d6
Apply suggestion from codde review
mhaseeb123 Sep 16, 2024
0e88b41
Merge branch 'branch-24.10' into mixed_semi_join_refactor
mhaseeb123 Sep 16, 2024
9189c2c
Minor style fix
mhaseeb123 Sep 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Port a previously-failing anti-join test from java to C++
Signed-off-by: Muhammad Haseeb <14217455+mhaseeb123@users.noreply.github.com>
  • Loading branch information
mhaseeb123 committed Sep 10, 2024
commit 08410dd31b86649c7779b94f2ca2ba8dc72902ad
15 changes: 15 additions & 0 deletions cpp/tests/join/mixed_join_tests.cu
Original file line number Diff line number Diff line change
Expand Up @@ -915,3 +915,18 @@ TYPED_TEST(MixedLeftAntiJoinTest, AsymmetricLeftLargerEquality)
left_zero_eq_right_zero,
{0, 1, 3});
}

TYPED_TEST(MixedLeftAntiJoinTest, MixedLeftAntiJoinGatherMap)
{
auto const col_ref_left_1 = cudf::ast::column_reference(0, cudf::ast::table_reference::LEFT);
auto const col_ref_right_1 = cudf::ast::column_reference(0, cudf::ast::table_reference::RIGHT);
auto left_one_greater_right_one =
cudf::ast::operation(cudf::ast::ast_operator::GREATER, col_ref_left_1, col_ref_right_1);

this->test({{2, 3, 9, 0, 1, 7, 4, 6, 5, 8}, {1, 2, 3, 4, 5, 6, 7, 8, 9, 0}},
{{6, 5, 9, 8, 10, 32}, {0, 1, 2, 3, 4, 5}, {7, 8, 9, 0, 1, 2}},
{0},
{1},
left_one_greater_right_one,
{0, 1, 3, 4, 5, 6, 9});
}