Skip to content

Commit

Permalink
Fix typos in documentation (rapidsai#2225)
Browse files Browse the repository at this point in the history
Fix few typos in documentation.

Authors:
  - Seunghwa Kang (https://github.com/seunghwak)

Approvers:
  - Chuck Hastings (https://github.com/ChuckHastings)

URL: rapidsai#2225
  • Loading branch information
seunghwak authored Apr 14, 2022
1 parent 7030b83 commit fc7bb31
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -914,7 +914,7 @@ void copy_v_transform_reduce_nbr(raft::handle_t const& handle,
* value to be reduced.
* @param init Initial value to be added to the reduced @p e_op return values for each vertex.
* @param vertex_value_output_first Iterator pointing to the vertex property variables for the first
* (inclusive) vertex (assigned to tihs process in multi-GPU). `vertex_value_output_last`
* (inclusive) vertex (assigned to this process in multi-GPU). `vertex_value_output_last`
* (exclusive) is deduced as @p vertex_value_output_first + @p
* graph_view.local_vertex_partition_range_size().
*/
Expand Down Expand Up @@ -975,7 +975,7 @@ void copy_v_transform_reduce_in_nbr(
* value to be reduced.
* @param init Initial value to be added to the reduced @p e_op return values for each vertex.
* @param vertex_value_output_first Iterator pointing to the vertex property variables for the
* first (inclusive) vertex (assigned to tihs process in multi-GPU). `vertex_value_output_last`
* first (inclusive) vertex (assigned to this process in multi-GPU). `vertex_value_output_last`
* (exclusive) is deduced as @p vertex_value_output_first + @p
* graph_view.local_vertex_partition_range_size().
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ struct reduce_with_init_t {
* @param reduce_op Binary operator takes two input arguments and reduce the two variables to one.
* @param init Initial value to be added to the reduced @p reduce_op return values for each vertex.
* @param vertex_value_output_first Iterator pointing to the vertex property variables for the
* first (inclusive) vertex (assigned to tihs process in multi-GPU). `vertex_value_output_last`
* first (inclusive) vertex (assigned to this process in multi-GPU). `vertex_value_output_last`
* (exclusive) is deduced as @p vertex_value_output_first + @p
* graph_view.local_vertex_partition_range_size().
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -976,12 +976,12 @@ typename GraphViewType::edge_type compute_num_out_nbrs_from_frontier(
* (inclusive) vertex (assigned to this process in multi-GPU). `vertex_value_input_last` (exclusive)
* is deduced as @p vertex_value_input_first + @p graph_view.local_vertex_partition_range_size().
* @param vertex_value_output_first Iterator pointing to the vertex property variables for the first
* (inclusive) vertex (assigned to tihs process in multi-GPU). `vertex_value_output_last`
* (inclusive) vertex (assigned to this process in multi-GPU). `vertex_value_output_last`
* (exclusive) is deduced as @p vertex_value_output_first + @p
* graph_view.local_vertex_partition_range_size().
* @param v_op Ternary operator takes (tagged-)vertex ID, *(@p vertex_value_input_first + i) (where
* i is [0, @p graph_view.local_vertex_partition_range_size())) and reduced value of the @p e_op
* outputs for this vertex and returns the target bucket index (for frontier update) and new verrtex
* outputs for this vertex and returns the target bucket index (for frontier update) and new vertex
* property values (to update *(@p vertex_value_output_first + i)). The target bucket index should
* either be VertexFrontierType::kInvalidBucketIdx or an index in @p next_frontier_bucket_indices.
*/
Expand Down

0 comments on commit fc7bb31

Please sign in to comment.