Skip to content

Commit 79acec9

Browse files
authored
Update decompress_to_edgelist to handle edge types (#4397)
Update decompress_to_edgelist to handle edge types Authors: - Naim (https://github.com/naimnv) Approvers: - Seunghwa Kang (https://github.com/seunghwak) - Joseph Nke (https://github.com/jnke2016) - Chuck Hastings (https://github.com/ChuckHastings) URL: #4397
1 parent b2b44b0 commit 79acec9

25 files changed

+452
-218
lines changed

cpp/include/cugraph/detail/decompress_edge_partition.cuh

+24-1
Original file line numberDiff line numberDiff line change
@@ -209,20 +209,27 @@ void decompress_edge_partition_to_fill_edgelist_majors(
209209
}
210210
}
211211

212-
template <typename vertex_t, typename edge_t, typename weight_t, bool multi_gpu>
212+
template <typename vertex_t,
213+
typename edge_t,
214+
typename weight_t,
215+
typename edge_type_t,
216+
bool multi_gpu>
213217
void decompress_edge_partition_to_edgelist(
214218
raft::handle_t const& handle,
215219
edge_partition_device_view_t<vertex_t, edge_t, multi_gpu> edge_partition,
216220
std::optional<edge_partition_edge_property_device_view_t<edge_t, weight_t const*>>
217221
edge_partition_weight_view,
218222
std::optional<edge_partition_edge_property_device_view_t<edge_t, edge_t const*>>
219223
edge_partition_id_view,
224+
std::optional<edge_partition_edge_property_device_view_t<edge_t, edge_type_t const*>>
225+
edge_partition_type_view,
220226
std::optional<edge_partition_edge_property_device_view_t<edge_t, uint32_t const*, bool>>
221227
edge_partition_mask_view,
222228
raft::device_span<vertex_t> edgelist_majors /* [OUT] */,
223229
raft::device_span<vertex_t> edgelist_minors /* [OUT] */,
224230
std::optional<raft::device_span<weight_t>> edgelist_weights /* [OUT] */,
225231
std::optional<raft::device_span<edge_t>> edgelist_ids /* [OUT] */,
232+
std::optional<raft::device_span<edge_type_t>> edgelist_types /* [OUT] */,
226233
std::optional<std::vector<vertex_t>> const& segment_offsets)
227234
{
228235
auto number_of_edges = edge_partition.number_of_edges();
@@ -271,6 +278,22 @@ void decompress_edge_partition_to_edgelist(
271278
(*edgelist_ids).begin());
272279
}
273280
}
281+
282+
if (edge_partition_type_view) {
283+
assert(edgelist_types.has_value());
284+
if (edge_partition_mask_view) {
285+
copy_if_mask_set(handle,
286+
(*edge_partition_type_view).value_first(),
287+
(*edge_partition_type_view).value_first() + number_of_edges,
288+
(*edge_partition_mask_view).value_first(),
289+
(*edgelist_types).begin());
290+
} else {
291+
thrust::copy(handle.get_thrust_policy(),
292+
(*edge_partition_type_view).value_first(),
293+
(*edge_partition_type_view).value_first() + number_of_edges,
294+
(*edgelist_types).begin());
295+
}
296+
}
274297
}
275298

276299
} // namespace detail

cpp/include/cugraph/graph_functions.hpp

+7-2
Original file line numberDiff line numberDiff line change
@@ -344,15 +344,17 @@ void renumber_local_ext_vertices(raft::handle_t const& handle,
344344
* @tparam vertex_t Type of vertex identifiers. Needs to be an integral type.
345345
* @tparam edge_t Type of edge identifiers. Needs to be an integral type.
346346
* @tparam weight_t Type of edge weights. Needs to be a floating point type.
347+
* @tparam edge_type_t Type of edge types. Needs to be an integral type.
347348
* @tparam store_transposed Flag indicating whether to use sources (if false) or destinations (if
348349
* true) as major indices in storing edges using a 2D sparse matrix. transposed.
349350
* @tparam multi_gpu Flag indicating whether template instantiation should target single-GPU (false)
350351
* or multi-GPU (true).
351352
* @param handle RAFT handle object to encapsulate resources (e.g. CUDA stream, communicator, and
352353
* handles to various CUDA libraries) to run graph algorithms.
353354
* @param graph_view Graph view object of the graph to be decompressed.
354-
* @param edge_id_view Optional view object holding edge ids for @p graph_view.
355355
* @param edge_weight_view Optional view object holding edge weights for @p graph_view.
356+
* @param edge_id_view Optional view object holding edge ids for @p graph_view.
357+
* @param edge_type_view Optional view object holding edge types for @p graph_view.
356358
* @param renumber_map If valid, return the renumbered edge list based on the provided @p
357359
* renumber_map
358360
* @param do_expensive_check A flag to run expensive checks for input arguments (if set to `true`).
@@ -363,17 +365,20 @@ void renumber_local_ext_vertices(raft::handle_t const& handle,
363365
template <typename vertex_t,
364366
typename edge_t,
365367
typename weight_t,
368+
typename edge_type_t,
366369
bool store_transposed,
367370
bool multi_gpu>
368371
std::tuple<rmm::device_uvector<vertex_t>,
369372
rmm::device_uvector<vertex_t>,
370373
std::optional<rmm::device_uvector<weight_t>>,
371-
std::optional<rmm::device_uvector<edge_t>>>
374+
std::optional<rmm::device_uvector<edge_t>>,
375+
std::optional<rmm::device_uvector<edge_type_t>>>
372376
decompress_to_edgelist(
373377
raft::handle_t const& handle,
374378
graph_view_t<vertex_t, edge_t, store_transposed, multi_gpu> const& graph_view,
375379
std::optional<edge_property_view_t<edge_t, weight_t const*>> edge_weight_view,
376380
std::optional<edge_property_view_t<edge_t, edge_t const*>> edge_id_view,
381+
std::optional<edge_property_view_t<edge_t, edge_type_t const*>> edge_type_view,
377382
std::optional<raft::device_span<vertex_t const>> renumber_map,
378383
bool do_expensive_check = false);
379384

cpp/src/c_api/betweenness_centrality.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -234,12 +234,13 @@ struct edge_betweenness_centrality_functor : public cugraph::c_api::abstract_fun
234234
normalized_,
235235
do_expensive_check_);
236236

237-
auto [src_ids, dst_ids, output_centralities, output_edge_ids] =
238-
cugraph::decompress_to_edgelist(
237+
auto [src_ids, dst_ids, output_centralities, output_edge_ids, output_edge_types] =
238+
cugraph::decompress_to_edgelist<vertex_t, edge_t, weight_t, int32_t, false, multi_gpu>(
239239
handle_,
240240
graph_view,
241241
std::make_optional(centralities.view()),
242242
(edge_ids != nullptr) ? std::make_optional(edge_ids->view()) : std::nullopt,
243+
std::nullopt,
243244
(number_map != nullptr) ? std::make_optional(raft::device_span<vertex_t const>{
244245
number_map->data(), number_map->size()})
245246
: std::nullopt);

cpp/src/community/k_truss_impl.cuh

+16-12
Original file line numberDiff line numberDiff line change
@@ -671,12 +671,14 @@ k_truss(raft::handle_t const& handle,
671671
edge_weight_view =
672672
edge_weight ? std::make_optional((*edge_weight).view())
673673
: std::optional<edge_property_view_t<edge_t, weight_t const*>>{std::nullopt};
674-
std::tie(edgelist_srcs, edgelist_dsts, edgelist_wgts, std::ignore) = decompress_to_edgelist(
675-
handle,
676-
cur_graph_view,
677-
edge_weight_view,
678-
std::optional<edge_property_view_t<edge_t, edge_t const*>>{std::nullopt},
679-
std::optional<raft::device_span<vertex_t const>>(std::nullopt));
674+
std::tie(edgelist_srcs, edgelist_dsts, edgelist_wgts, std::ignore, std::ignore) =
675+
decompress_to_edgelist(
676+
handle,
677+
cur_graph_view,
678+
edge_weight_view,
679+
std::optional<edge_property_view_t<edge_t, edge_t const*>>{std::nullopt},
680+
std::optional<cugraph::edge_property_view_t<edge_t, int32_t const*>>{std::nullopt},
681+
std::optional<raft::device_span<vertex_t const>>(std::nullopt));
680682

681683
auto num_triangles = edge_triangle_count<vertex_t, edge_t, false, false>(
682684
handle,
@@ -894,12 +896,14 @@ k_truss(raft::handle_t const& handle,
894896
num_triangles.resize(num_edges_with_triangles, handle.get_stream());
895897
}
896898

897-
std::tie(edgelist_srcs, edgelist_dsts, edgelist_wgts, std::ignore) = decompress_to_edgelist(
898-
handle,
899-
cur_graph_view,
900-
edge_weight_view ? std::make_optional(*edge_weight_view) : std::nullopt,
901-
std::optional<edge_property_view_t<edge_t, edge_t const*>>{std::nullopt},
902-
std::optional<raft::device_span<vertex_t const>>(std::nullopt));
899+
std::tie(edgelist_srcs, edgelist_dsts, edgelist_wgts, std::ignore, std::ignore) =
900+
decompress_to_edgelist(
901+
handle,
902+
cur_graph_view,
903+
edge_weight_view ? std::make_optional(*edge_weight_view) : std::nullopt,
904+
std::optional<edge_property_view_t<edge_t, edge_t const*>>{std::nullopt},
905+
std::optional<cugraph::edge_property_view_t<edge_t, int32_t const*>>{std::nullopt},
906+
std::optional<raft::device_span<vertex_t const>>(std::nullopt));
903907

904908
std::tie(edgelist_srcs, edgelist_dsts, edgelist_wgts) =
905909
symmetrize_edgelist<vertex_t, weight_t, false, multi_gpu>(handle,

cpp/src/prims/transform_reduce_dst_nbr_intersection_of_e_endpoints_by_v.cuh

+3
Original file line numberDiff line numberDiff line change
@@ -309,16 +309,19 @@ void transform_reduce_dst_nbr_intersection_of_e_endpoints_by_v(
309309
detail::decompress_edge_partition_to_edgelist<vertex_t,
310310
edge_t,
311311
weight_t,
312+
int32_t,
312313
GraphViewType::is_multi_gpu>(
313314
handle,
314315
edge_partition,
315316
std::nullopt,
316317
std::nullopt,
318+
std::nullopt,
317319
edge_partition_e_mask,
318320
raft::device_span<vertex_t>(majors.data(), majors.size()),
319321
raft::device_span<vertex_t>(minors.data(), minors.size()),
320322
std::nullopt,
321323
std::nullopt,
324+
std::nullopt,
322325
segment_offsets);
323326

324327
auto vertex_pair_first =

cpp/src/structure/coarsen_graph_impl.cuh

+3-1
Original file line numberDiff line numberDiff line change
@@ -171,18 +171,20 @@ decompress_edge_partition_to_relabeled_and_grouped_and_coarsened_edgelist(
171171
? std::make_optional<rmm::device_uvector<weight_t>>(
172172
edgelist_majors.size(), handle.get_stream())
173173
: std::nullopt;
174-
detail::decompress_edge_partition_to_edgelist<vertex_t, edge_t, weight_t, multi_gpu>(
174+
detail::decompress_edge_partition_to_edgelist<vertex_t, edge_t, weight_t, int32_t, multi_gpu>(
175175
handle,
176176
edge_partition,
177177
edge_partition_weight_view,
178178
std::nullopt,
179+
std::nullopt,
179180
edge_partition_e_mask,
180181
raft::device_span<vertex_t>(edgelist_majors.data(), edgelist_majors.size()),
181182
raft::device_span<vertex_t>(edgelist_minors.data(), edgelist_minors.size()),
182183
edgelist_weights ? std::make_optional<raft::device_span<weight_t>>((*edgelist_weights).data(),
183184
(*edgelist_weights).size())
184185
: std::nullopt,
185186
std::nullopt,
187+
std::nullopt,
186188
segment_offsets);
187189

188190
auto pair_first =

0 commit comments

Comments
 (0)