Skip to content

Commit

Permalink
new graph creation implementation in C API
Browse files Browse the repository at this point in the history
  • Loading branch information
ChuckHastings committed Nov 13, 2023
1 parent d07af7d commit c66a50e
Show file tree
Hide file tree
Showing 5 changed files with 661 additions and 226 deletions.
4 changes: 0 additions & 4 deletions cpp/include/cugraph_c/graph.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ typedef struct {
* integer values from 0 to num_vertices.
* @param [in] do_expensive_check If true, do expensive checks to validate the input data
* is consistent with software assumptions. If false bypass these checks.
* @param [in] properties Properties of the graph
* @param [out] graph A pointer to the graph object
* @param [out] error Pointer to an error object storing details of any error. Will
* be populated if error code is not CUGRAPH_SUCCESS
Expand Down Expand Up @@ -99,7 +98,6 @@ cugraph_error_code_t cugraph_sg_graph_create(
* integer values from 0 to num_vertices.
* @param [in] do_expensive_check If true, do expensive checks to validate the input data
* is consistent with software assumptions. If false bypass these checks.
* @param [in] properties Properties of the graph
* @param [out] graph A pointer to the graph object
* @param [out] error Pointer to an error object storing details of any error. Will
* be populated if error code is not CUGRAPH_SUCCESS
Expand Down Expand Up @@ -142,7 +140,6 @@ cugraph_error_code_t cugraph_graph_create_sg(
* integer values from 0 to num_vertices.
* @param [in] do_expensive_check If true, do expensive checks to validate the input data
* is consistent with software assumptions. If false bypass these checks.
* @param [in] properties Properties of the graph
* @param [out] graph A pointer to the graph object
* @param [out] error Pointer to an error object storing details of any error. Will
* be populated if error code is not CUGRAPH_SUCCESS
Expand Down Expand Up @@ -182,7 +179,6 @@ cugraph_error_code_t cugraph_sg_graph_create_from_csr(
* integer values from 0 to num_vertices.
* @param [in] do_expensive_check If true, do expensive checks to validate the input data
* is consistent with software assumptions. If false bypass these checks.
* @param [in] properties Properties of the graph
* @param [out] graph A pointer to the graph object
* @param [out] error Pointer to an error object storing details of any error. Will
* be populated if error code is not CUGRAPH_SUCCESS
Expand Down
Loading

0 comments on commit c66a50e

Please sign in to comment.