Skip to content

Commit

Permalink
updates for PR 2110
Browse files Browse the repository at this point in the history
  • Loading branch information
ChuckHastings committed Mar 16, 2022
1 parent ac94327 commit ee3b4a3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions cpp/src/c_api/uniform_neighbor_sampling.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,14 @@ namespace {
bool with_replacement_{false};
cugraph_sample_result_t* result_{nullptr};

// FIXME: after PR 2110 merges this must be updated
uniform_neighbor_sampling_functor(cugraph_resource_handle_t const* handle,
uniform_neighbor_sampling_functor(::cugraph_resource_handle_t const* handle,
::cugraph_graph_t* graph,
::cugraph_type_erased_device_array_view_t const* start,
::cugraph_type_erased_device_array_view_t const* start_label,
::cugraph_type_erased_host_array_view_t const* fan_out,
bool without_replacement)
: abstract_functor(),
handle_(*reinterpret_cast<raft::handle_t const*>(handle)),
handle_(*reinterpret_cast<cugraph::c_api::cugraph_resource_handle_t const*>(handle)->handle_),
graph_(reinterpret_cast<cugraph::c_api::cugraph_graph_t*>(graph)),
start_(
reinterpret_cast<cugraph::c_api::cugraph_type_erased_device_array_view_t const*>(start)),
Expand Down

0 comments on commit ee3b4a3

Please sign in to comment.