Skip to content

Commit 8e63d0d

Browse files
committed
doc correctives
1 parent 52b946d commit 8e63d0d

5 files changed

Lines changed: 18 additions & 6 deletions

File tree

cpp/include/cuvs/neighbors/cagra.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1964,6 +1964,10 @@ void serialize_to_hnswlib(
19641964
std::optional<raft::host_matrix_view<const uint8_t, int64_t, raft::row_major>> dataset =
19651965
std::nullopt);
19661966

1967+
/**
1968+
* @}
1969+
*/
1970+
19671971
/**
19681972
* @defgroup cagra_cpp_index_merge CAGRA index build functions
19691973
* @{

cpp/include/cuvs/neighbors/hnsw.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,10 @@ struct extend_params {
163163
int num_threads = 0;
164164
};
165165

166+
/**
167+
* @}
168+
*/
169+
166170
/**
167171
* @defgroup hnsw_cpp_index_load Load CAGRA index as hnswlib index
168172
* @{

cpp/include/cuvs/neighbors/vamana.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -488,6 +488,10 @@ auto build(raft::resources const& res,
488488
raft::host_matrix_view<const uint8_t, int64_t, raft::row_major> dataset)
489489
-> cuvs::neighbors::vamana::index<uint8_t, uint32_t>;
490490

491+
/**
492+
* @}
493+
*/
494+
491495
/**
492496
* @defgroup vamana_cpp_serialize Vamana serialize functions
493497
* @{

cpp/include/cuvs/preprocessing/spectral_embedding.hpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,6 @@
2323

2424
namespace cuvs::preprocessing::spectral_embedding {
2525

26-
/**
27-
* @defgroup spectral_embedding Spectral Embedding
28-
* @{
29-
*/
30-
3126
/**
3227
* @brief Parameters for spectral embedding algorithm
3328
*
@@ -71,6 +66,11 @@ struct params {
7166
uint64_t seed;
7267
};
7368

69+
/**
70+
* @defgroup spectral_embedding Spectral Embedding
71+
* @{
72+
*/
73+
7474
/**
7575
* @brief Perform spectral embedding on input dataset
7676
*

docs/source/neighbors/all_neighbors.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ All-neighbors supports multiple underlying algorithms:
1616

1717
The algorithm partitions the dataset into clusters and distributes the work across multiple GPUs when possible, making it suitable for large-scale graph construction tasks.
1818

19-
[ :doc:`C API <../c_api/neighbors_all_neighbors_c>` |:doc:`C++ API <../cpp_api/neighbors_all_neighbors>` | :doc:`Python API <../python_api/neighbors_all_neighbors>` ]
19+
[ :doc:`C API <../c_api/neighbors_all_neighbors_c>` | :doc:`C++ API <../cpp_api/neighbors_all_neighbors>` | :doc:`Python API <../python_api/neighbors_all_neighbors>` ]
2020

2121
Algorithm Overview
2222
------------------

0 commit comments

Comments
 (0)