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

Update JNI to new gather boundary check API [skip ci] #6899

Merged
merged 2 commits into from
Dec 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,8 @@
- PR #6869 Avoid dependency resolution failure in latest version of pip by explicitly specifying versions for dask and distributed
- PR #6806 Force install of local conda artifacts
- PR #6887 Fix typo and `0-d` numpy array handling in binary operation
- PR #6899 Update JNI to new gather boundary check API


# cuDF 0.16.0 (21 Oct 2020)

Expand Down
2 changes: 1 addition & 1 deletion java/src/main/native/src/map_lookup.cu
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ std::unique_ptr<column> map_lookup(column_view const &map_column, string_scalar
auto table_for_gather = table_view{std::vector<cudf::column_view>{values_column}};

auto gathered_table = cudf::detail::gather(
table_for_gather, gather_map->view(), detail::out_of_bounds_policy::IGNORE,
table_for_gather, gather_map->view(), out_of_bounds_policy::NULLIFY,
detail::negative_index_policy::NOT_ALLOWED, stream, mr);

return std::make_unique<cudf::column>(std::move(gathered_table->get_column(0)));
Expand Down