From 42b8de566ed155a36ea18adc4d0b5ad79989dc56 Mon Sep 17 00:00:00 2001 From: Naim Date: Thu, 14 Mar 2024 03:45:24 +0100 Subject: [PATCH] Update comments --- .../developers/graph_operations/graph_operations.cu | 2 +- .../vertex_and_edge_partition/vertex_and_edge_partition.cu | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/cpp/examples/developers/graph_operations/graph_operations.cu b/cpp/examples/developers/graph_operations/graph_operations.cu index a4b2b591600..395583ee4fb 100644 --- a/cpp/examples/developers/graph_operations/graph_operations.cu +++ b/cpp/examples/developers/graph_operations/graph_operations.cu @@ -188,7 +188,7 @@ void perform_example_graph_operations( // Number of vertices mapped to this process, ie the size of // the vertex partition assigned to this process. We are using - // one-process-per GPU model + // one-process-per-GPU model vertex_t size_of_the_vertex_partition_assigned_to_this_process = graph_view.local_vertex_partition_range_size(); diff --git a/cpp/examples/developers/vertex_and_edge_partition/vertex_and_edge_partition.cu b/cpp/examples/developers/vertex_and_edge_partition/vertex_and_edge_partition.cu index a48df03021c..6d7527e5083 100644 --- a/cpp/examples/developers/vertex_and_edge_partition/vertex_and_edge_partition.cu +++ b/cpp/examples/developers/vertex_and_edge_partition/vertex_and_edge_partition.cu @@ -191,13 +191,12 @@ void look_into_vertex_and_edge_partitions( // // Number of vertices mapped to this process, ie the size of - // the vertex partition assigned to this process + // the vertex partition assigned to this process. We are using + // one-process-per-GPU model vertex_t size_of_the_vertex_partition_assigned_to_this_process = graph_view.local_vertex_partition_range_size(); - // NOTE: The `renumber_map` contains the vertices assigned to this process. - - // + // The `renumber_map` contains the vertices assigned to this process. // Print verties mapped to this process //