1
1
/*
2
- * Copyright (c) 2023, NVIDIA CORPORATION.
2
+ * Copyright (c) 2023-2024 , NVIDIA CORPORATION.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -120,7 +120,7 @@ void cugraph_coo_list_free(cugraph_coo_list_t* coo_list);
120
120
* Vertex types will be int32 if scale < 32 and int64 if scale >= 32
121
121
*
122
122
* @param [in] handle Handle for accessing resources
123
- * @param [in/ out] rng_state State of the random number generator, updated with each call
123
+ * @param [in, out] rng_state State of the random number generator, updated with each call
124
124
* @param [in] scale Scale factor to set the number of vertices in the graph. Vertex IDs have
125
125
* values in [0, V), where V = 1 << @p scale.
126
126
* @param [in] num_edges Number of edges to generate.
@@ -164,7 +164,7 @@ cugraph_error_code_t cugraph_generate_rmat_edgelist(const cugraph_resource_handl
164
164
* Vertex types will be int32 if scale < 32 and int64 if scale >= 32
165
165
*
166
166
* @param [in] handle Handle for accessing resources
167
- * @param [in/ out] rng_state State of the random number generator, updated with each call
167
+ * @param [in, out] rng_state State of the random number generator, updated with each call
168
168
* @param [in] n_edgelists Number of edge lists (graphs) to generate
169
169
* @param [in] min_scale Scale factor to set the minimum number of verties in the graph.
170
170
* @param [in] max_scale Scale factor to set the maximum number of verties in the graph.
@@ -204,8 +204,8 @@ cugraph_error_code_t cugraph_generate_rmat_edgelists(
204
204
* Updates a COO to contain random edge weights
205
205
*
206
206
* @param [in] handle Handle for accessing resources
207
- * @param [in/ out] rng_state State of the random number generator, updated with each call
208
- * @param [in/ out] coo Opaque pointer to the coo, weights will be added (overwriting
207
+ * @param [in, out] rng_state State of the random number generator, updated with each call
208
+ * @param [in, out] coo Opaque pointer to the coo, weights will be added (overwriting
209
209
* any existing weights)
210
210
* @param [in] dtype The type of weight to generate (FLOAT32 or FLOAT64), ignored
211
211
* unless include_weights is true
@@ -229,7 +229,7 @@ cugraph_error_code_t cugraph_generate_edge_weights(const cugraph_resource_handle
229
229
* edges
230
230
*
231
231
* @param [in] handle Handle for accessing resources
232
- * @param [in/ out] coo Opaque pointer to the coo, weights will be added (overwriting
232
+ * @param [in, out] coo Opaque pointer to the coo, weights will be added (overwriting
233
233
* any existing weights)
234
234
* @param [in] multi_gpu Flag if the COO is being created on multiple GPUs
235
235
* @param [out] error Pointer to an error object storing details of any error. Will
@@ -246,8 +246,8 @@ cugraph_error_code_t cugraph_generate_edge_ids(const cugraph_resource_handle_t*
246
246
* Updates a COO to contain edge types. Edges types will be randomly generated.
247
247
*
248
248
* @param [in] handle Handle for accessing resources
249
- * @param [in/ out] rng_state State of the random number generator, updated with each call
250
- * @param [in/ out] coo Opaque pointer to the coo, weights will be added (overwriting
249
+ * @param [in, out] rng_state State of the random number generator, updated with each call
250
+ * @param [in, out] coo Opaque pointer to the coo, weights will be added (overwriting
251
251
* any existing weights)
252
252
* @param [in] max_edge_type Edge types will be randomly generated between min_edge_type
253
253
* and max_edge_type
0 commit comments