pub enum GradientSyncMethod {
AllReduce,
ParameterServer,
RingAllReduce,
TreeAllReduce,
HierarchicalAllReduce,
}
Expand description
Gradient synchronization method
Variants§
AllReduce
All-reduce - everyone gets the same result
ParameterServer
Parameter server - centralized parameter updates
RingAllReduce
Ring all-reduce - bandwidth-optimal for large clusters
TreeAllReduce
Tree all-reduce - latency-optimal for small clusters
HierarchicalAllReduce
Hierarchical all-reduce - multi-level reduction
Trait Implementations§
Source§impl Clone for GradientSyncMethod
impl Clone for GradientSyncMethod
Source§fn clone(&self) -> GradientSyncMethod
fn clone(&self) -> GradientSyncMethod
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GradientSyncMethod
impl Debug for GradientSyncMethod
Source§impl<'de> Deserialize<'de> for GradientSyncMethod
impl<'de> Deserialize<'de> for GradientSyncMethod
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GradientSyncMethod
impl PartialEq for GradientSyncMethod
Source§impl Serialize for GradientSyncMethod
impl Serialize for GradientSyncMethod
impl Copy for GradientSyncMethod
impl Eq for GradientSyncMethod
impl StructuralPartialEq for GradientSyncMethod
Auto Trait Implementations§
impl Freeze for GradientSyncMethod
impl RefUnwindSafe for GradientSyncMethod
impl Send for GradientSyncMethod
impl Sync for GradientSyncMethod
impl Unpin for GradientSyncMethod
impl UnwindSafe for GradientSyncMethod
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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