Skip to content

Commit

Permalink
Update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Naim committed Mar 14, 2024
1 parent 42b8de5 commit f9422ba
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ int main(int argc, char** argv)
// Non-owning view of the graph object
auto graph_view = graph.view();

// Non-owning of the edge edge_weights object
// Non-owning of the edge_weights object
auto edge_weight_view = edge_weights ? std::make_optional((*edge_weights).view()) : std::nullopt;

perform_example_graph_operations<vertex_t, edge_t, weight_t, store_transposed, multi_gpu>(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ int main(int argc, char** argv)
// Non-owning view of the graph object
auto graph_view = graph.view();

// Non-owning of the edge edge_weights object
// Non-owning of the edge_weights object
auto edge_weight_view = edge_weights ? std::make_optional((*edge_weights).view()) : std::nullopt;

look_into_vertex_and_edge_partitions<vertex_t, edge_t, weight_t, store_transposed, multi_gpu>(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ int main(int argc, char** argv)
// Non-owning view of the graph object
auto graph_view = graph.view();

// Non-owning of the edge edge_weights object
// Non-owning of the edge_weights object
auto edge_weight_view = edge_weights ? std::make_optional((*edge_weights).view()) : std::nullopt;

//
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ int main(int argc, char** argv)
// Non-owning view of the graph object
auto graph_view = graph.view();

// Non-owning of the edge edge_weights object
// Non-owning of the edge_weights object
auto edge_weight_view = edge_weights ? std::make_optional((*edge_weights).view()) : std::nullopt;

//
Expand Down

0 comments on commit f9422ba

Please sign in to comment.