Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs committed Nov 1, 2023
1 parent e07dbb9 commit 0c36e4c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tree/src/implementations/mpi_helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ use mpi::{
/// to a subset of the communicator.
///
/// For Example, you may have four processes in a communicator
/// Communicator = [P0, P1, P2, P3]. Each process communicates
/// Communicator = \[P0, P1, P2, P3\]. Each process communicates
/// with a subset of the communicator excluding itself,
/// ie. P0 -> [P0, P2], P1 -> [P0], P2-> [], P3 -> [P0, P1, P2].
/// ie. P0 -> \[P0, P2\], P1 -> \[P0\], P2-> \[\], P3 -> \[P0, P1, P2\].
/// This function expects these packets to be separated in a
/// Vec<Vec<T>>, their destination ranks, as well as the number of
/// `Vec<Vec<T>>`, their destination ranks, as well as the number of
/// packets this process expects to receive overall `recv_count`.
pub fn all_to_allv_sparse<T>(
comm: &UserCommunicator,
Expand Down

0 comments on commit 0c36e4c

Please sign in to comment.