From aaba770445351ed1a409142de33cfa8d4abe9f25 Mon Sep 17 00:00:00 2001 From: Naim Date: Mon, 11 Mar 2024 22:28:38 +0100 Subject: [PATCH] Fix doc string --- cpp/include/cugraph/graph_functions.hpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/cpp/include/cugraph/graph_functions.hpp b/cpp/include/cugraph/graph_functions.hpp index 5229e536dd1..6d4470e8251 100644 --- a/cpp/include/cugraph/graph_functions.hpp +++ b/cpp/include/cugraph/graph_functions.hpp @@ -1054,7 +1054,7 @@ remove_multi_edges(raft::handle_t const& handle, /** * @brief Shuffle external vertex ids to the proper GPU. - * * + * * @tparam vertex_t Type of vertex identifiers. Needs to be an integral type. * * @param handle RAFT handle object to encapsulate resources (e.g. CUDA stream, communicator, and @@ -1068,9 +1068,10 @@ rmm::device_uvector shuffle_external_vertices(raft::handle_t const& ha /** * @brief Shuffle external vertex ids and values to the proper GPU. - * * - * @tparam vertex_t Type of vertex identifiers. Needs to be an integral type. - * @tparam value_t Type of values. Needs to an integral or floating point type. + * + * @tparam vertex_t Type of vertex identifiers. Needs to be an integral type. + * @tparam value_t Type of values. currently supported types are int32_t, + * int64_t, size_t, float and double. * * @param handle RAFT handle object to encapsulate resources (e.g. CUDA stream, communicator, and * handles to various CUDA libraries) to run graph algorithms. @@ -1086,7 +1087,7 @@ shuffle_external_vertex_value_pairs(raft::handle_t const& handle, /** * @brief Shuffle external edges to the proper GPU. - * * + * * @tparam vertex_t Type of vertex identifiers. Needs to be an integral type. * @tparam edge_t Type of edge identifiers. Needs to be an integral type. * @tparam weight_t Type of edge weight. Currently float and double are supported.