pub struct GradientAccumulationStats {
pub accumulation_steps: usize,
pub current_step: usize,
pub total_cycles: usize,
pub max_grad_norm: f64,
pub overflow_detected: bool,
pub num_parameters: usize,
pub memory_usage_mb: f64,
}Expand description
Statistics for gradient accumulation.
Fields§
§accumulation_steps: usizeConfigured accumulation steps.
current_step: usizeCurrent step in accumulation.
total_cycles: usizeTotal completed cycles.
max_grad_norm: f64Maximum gradient norm seen.
overflow_detected: boolWhether overflow was detected.
num_parameters: usizeNumber of parameters being accumulated.
memory_usage_mb: f64Estimated memory usage in MB.
Trait Implementations§
Source§impl Clone for GradientAccumulationStats
impl Clone for GradientAccumulationStats
Source§fn clone(&self) -> GradientAccumulationStats
fn clone(&self) -> GradientAccumulationStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for GradientAccumulationStats
impl RefUnwindSafe for GradientAccumulationStats
impl Send for GradientAccumulationStats
impl Sync for GradientAccumulationStats
impl Unpin for GradientAccumulationStats
impl UnwindSafe for GradientAccumulationStats
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