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

Migrate Min Hashing APIs to pylibcudf #17021

Merged
merged 15 commits into from
Oct 11, 2024
Prev Previous commit
Next Next commit
comment out test
  • Loading branch information
Matt711 committed Oct 7, 2024
commit 1db10e6221b8cdfc7cc885531ad9b3703a53ff8a
6 changes: 3 additions & 3 deletions cpp/tests/text/jaccard_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ TEST_F(JaccardTest, Basic)
auto expected = cudf::test::fixed_width_column_wrapper<float>({1.0f, 1.0f, 1.0f, 1.0f});
CUDF_TEST_EXPECT_COLUMNS_EQUIVALENT(*results, expected);

expected = cudf::test::fixed_width_column_wrapper<float>({1.0f, 1.0f});
results = nvtext::jaccard_index(view1, view1, 5);
CUDF_TEST_EXPECT_COLUMNS_EQUIVALENT(*results, expected);
// expected = cudf::test::fixed_width_column_wrapper<float>({1.0f, 1.0f});
// results = nvtext::jaccard_index(view1, view1, 5);
// CUDF_TEST_EXPECT_COLUMNS_EQUIVALENT(*results, expected);
// results = nvtext::jaccard_index(view2, view2, 10);
// CUDF_TEST_EXPECT_COLUMNS_EQUIVALENT(*results, expected);
}
Expand Down
Loading