Skip to main content

SubBackend

Struct SubBackend 

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

A backend view that restricts communication to a subset of global ranks.

SubBackend wraps a parent Backend and a list of member global ranks to form a logical sub-process-group. It translates every rank(), world_size(), send(), and recv() call into the equivalent parent- backend operation using the subgroup→global rank mapping.

Because SubBackend implements the Backend trait, the existing allreduce, all_gather, and reduce_scatter collective functions work on a subgroup without any changes: they only see the SubBackend through the trait, so “rank 0” in the collective means “the first member of the subgroup” and world_size means the subgroup size.

Used by FSDP’s HybridShard strategy to form an intra-node (sharding) subgroup and an inter-node (replication) subgroup.

CL-327.

Implementations§

Source§

impl SubBackend

Source

pub fn new( parent: Arc<dyn Backend>, members: Vec<usize>, ) -> FerrotorchResult<Self>

Create a subgroup view from a parent backend and a list of member global ranks.

The caller’s rank (read from parent.rank()) must be in members. members is sorted and deduplicated before being stored.

§Errors
Source

pub fn members(&self) -> &[usize]

Return the global ranks that make up this subgroup, in ascending order. The index of this rank’s entry is its local rank.

Source

pub fn to_global(&self, local: usize) -> usize

Map a local (subgroup-relative) rank to its global rank.

§Panics

Panics if local is out of bounds.

Source

pub fn to_local(&self, global: usize) -> Option<usize>

Map a global rank to its local subgroup rank, or None if the global rank is not a member of this subgroup.

Source

pub fn parent(&self) -> &Arc<dyn Backend>

The parent backend this subgroup was derived from.

Trait Implementations§

Source§

impl Backend for SubBackend

Source§

fn rank(&self) -> usize

This rank’s index in the world (0-based).
Source§

fn world_size(&self) -> usize

Total number of ranks in the process group.
Source§

fn send(&self, data: &[u8], dst_rank: usize) -> FerrotorchResult<()>

Send data to dst_rank.
Source§

fn recv(&self, dst: &mut [u8], src_rank: usize) -> FerrotorchResult<()>

Receive into dst from src_rank. The caller must allocate dst with the correct length before calling.
Source§

fn recv_timeout( &self, dst: &mut [u8], src_rank: usize, timeout: Duration, ) -> FerrotorchResult<()>

Receive into dst from src_rank with a timeout. Read more
Source§

fn barrier(&self) -> FerrotorchResult<()>

Block until every rank has reached this barrier.

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> ByRef<T> for T

Source§

fn by_ref(&self) -> &T

Source§

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

Source§

fn rand<T>(&self, rng: &mut (impl Rng + ?Sized)) -> T
where Self: Distribution<T>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. 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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T, U> Imply<T> for U
where T: ?Sized, U: ?Sized,