Skip to content

Commit

Permalink
rename extract_induced_subgraph to extract_induced_subgraph"s"
Browse files Browse the repository at this point in the history
  • Loading branch information
seunghwak committed Jan 21, 2021
1 parent ec0d6f4 commit 42a886c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion cpp/include/experimental/graph_functions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ std::tuple<rmm::device_uvector<vertex_t>,
rmm::device_uvector<vertex_t>,
rmm::device_uvector<weight_t>,
rmm::device_uvector<size_t>>
extract_induced_subgraph(
extract_induced_subgraphs(
raft::handle_t const& handle,
graph_view_t<vertex_t, edge_t, weight_t, store_transposed, multi_gpu> const& graph_view,
size_t const* subgraph_offsets /* size == num_subgraphs + 1 */,
Expand Down
26 changes: 13 additions & 13 deletions cpp/src/experimental/induced_subgraph.cu
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ std::tuple<rmm::device_uvector<vertex_t>,
rmm::device_uvector<vertex_t>,
rmm::device_uvector<weight_t>,
rmm::device_uvector<size_t>>
extract_induced_subgraph(
extract_induced_subgraphs(
raft::handle_t const &handle,
graph_view_t<vertex_t, edge_t, weight_t, store_transposed, multi_gpu> const &graph_view,
size_t const *subgraph_offsets /* size == num_subgraphs + 1 */,
Expand Down Expand Up @@ -257,23 +257,23 @@ template std::tuple<rmm::device_uvector<int32_t>,
rmm::device_uvector<int32_t>,
rmm::device_uvector<float>,
rmm::device_uvector<size_t>>
extract_induced_subgraph(raft::handle_t const &handle,
graph_view_t<int32_t, int32_t, float, true, false> const &graph_view,
size_t const *subgraph_offsets,
int32_t const *subgraph_vertices,
size_t num_subgraphs,
bool do_expensive_check);
extract_induced_subgraphs(raft::handle_t const &handle,
graph_view_t<int32_t, int32_t, float, true, false> const &graph_view,
size_t const *subgraph_offsets,
int32_t const *subgraph_vertices,
size_t num_subgraphs,
bool do_expensive_check);

template std::tuple<rmm::device_uvector<int32_t>,
rmm::device_uvector<int32_t>,
rmm::device_uvector<float>,
rmm::device_uvector<size_t>>
extract_induced_subgraph(raft::handle_t const &handle,
graph_view_t<int32_t, int32_t, float, false, false> const &graph_view,
size_t const *subgraph_offsets,
int32_t const *subgraph_vertices,
size_t num_subgraphs,
bool do_expensive_check);
extract_induced_subgraphs(raft::handle_t const &handle,
graph_view_t<int32_t, int32_t, float, false, false> const &graph_view,
size_t const *subgraph_offsets,
int32_t const *subgraph_vertices,
size_t num_subgraphs,
bool do_expensive_check);

} // namespace experimental
} // namespace cugraph

0 comments on commit 42a886c

Please sign in to comment.