Skip to content

Commit 1f7f4ff

Browse files
authored
Update src/main/cpp/src/protobuf/protobuf_kernels.cu
1 parent 176dfba commit 1f7f4ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/cpp/src/protobuf/protobuf_kernels.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ void maybe_check_required_fields(field_location const* locations,
8686
if (!has_required) { return; }
8787

8888
auto d_is_required = cudf::detail::make_device_uvector_async(
89-
h_is_required, stream, rmm::mr::get_current_device_resource_ref());
89+
h_is_required, stream, cudf::get_current_device_resource_ref());
9090

9191
auto const blocks = static_cast<int>((num_rows + THREADS_PER_BLOCK - 1u) / THREADS_PER_BLOCK);
9292
check_required_fields_kernel<<<blocks, THREADS_PER_BLOCK, 0, stream.value()>>>(

0 commit comments

Comments
 (0)