Skip to main content

TopologyInfo

Struct TopologyInfo 

Source
pub struct TopologyInfo { /* private fields */ }
Expand description

MPI topology information gathered across all ranks in a communicator.

This is produced by a collective operation (Communicator::topology) and contains the rank-to-host mapping, MPI library metadata, and optional SLURM job information.

§Display

The Display implementation produces a human-readable topology report:

================ MPI Topology ================
Library:   Open MPI v4.1.6
Standard:  MPI 4.0
Threads:   Funneled
Processes: 8 across 2 nodes

  compute-01: ranks 0, 1, 2, 3  (4 processes)
  compute-02: ranks 4, 5, 6, 7  (4 processes)
==============================================

Implementations§

Source§

impl TopologyInfo

Source

pub fn hosts(&self) -> &[HostEntry]

Hosts and their assigned ranks, ordered by first rank on each host.

Source

pub fn library_version(&self) -> &str

MPI library version string (implementation-specific).

Source

pub fn standard_version(&self) -> &str

MPI standard version string.

Source

pub fn thread_level(&self) -> ThreadLevel

Thread support level granted by the MPI runtime.

Source

pub fn size(&self) -> i32

Total number of processes in the communicator.

Source

pub fn num_hosts(&self) -> usize

Number of distinct hosts.

Trait Implementations§

Source§

impl Display for TopologyInfo

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.