Struct burn::module::RunningState
pub struct RunningState<V> { /* private fields */ }
Expand description
A state that can be updated during the forward pass while being thread safe.
§Note
The state value is the average of all updates on all threads.
Implementations§
§impl<const D: usize, B> RunningState<Tensor<B, D>>where
B: Backend,
impl<const D: usize, B> RunningState<Tensor<B, D>>where
B: Backend,
pub fn new(value: Tensor<B, D>) -> RunningState<Tensor<B, D>>
pub fn new(value: Tensor<B, D>) -> RunningState<Tensor<B, D>>
Create a new running state.
pub fn with_id(id: ParamId, value: Tensor<B, D>) -> RunningState<Tensor<B, D>>
pub fn with_id(id: ParamId, value: Tensor<B, D>) -> RunningState<Tensor<B, D>>
Create a new running state.
pub fn from_record(record: Param<Tensor<B, D>>) -> RunningState<Tensor<B, D>>
pub fn from_record(record: Param<Tensor<B, D>>) -> RunningState<Tensor<B, D>>
Create a new running state from a record.
pub fn value_sync(&self) -> Tensor<B, D>
pub fn value_sync(&self) -> Tensor<B, D>
Get the current value and make sure it is sync.
§Note
Don’t use this function after an update on the same thread where other threads might have to register their update before the actual synchronization needs to happen.
Trait Implementations§
§impl<const D: usize, B> AutodiffModule<B> for RunningState<Tensor<B, D>>where
B: AutodiffBackend,
impl<const D: usize, B> AutodiffModule<B> for RunningState<Tensor<B, D>>where
B: AutodiffBackend,
§type InnerModule = RunningState<Tensor<<B as AutodiffBackend>::InnerBackend, D>>
type InnerModule = RunningState<Tensor<<B as AutodiffBackend>::InnerBackend, D>>
Inner module without auto-differentiation.
§fn valid(
&self,
) -> <RunningState<Tensor<B, D>> as AutodiffModule<B>>::InnerModule
fn valid( &self, ) -> <RunningState<Tensor<B, D>> as AutodiffModule<B>>::InnerModule
Get the same module, but on the inner backend without auto-differentiation.
§impl<V> Clone for RunningState<V>where
V: Clone,
impl<V> Clone for RunningState<V>where
V: Clone,
§fn clone(&self) -> RunningState<V>
fn clone(&self) -> RunningState<V>
Returns a copy 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 more§impl<V> Debug for RunningState<V>where
V: Debug,
impl<V> Debug for RunningState<V>where
V: Debug,
§impl<V> Display for RunningState<V>
impl<V> Display for RunningState<V>
§impl<const D: usize, B> Module<B> for RunningState<Tensor<B, D>>where
B: Backend,
impl<const D: usize, B> Module<B> for RunningState<Tensor<B, D>>where
B: Backend,
§fn visit<V>(&self, visitor: &mut V)where
V: ModuleVisitor<B>,
fn visit<V>(&self, visitor: &mut V)where
V: ModuleVisitor<B>,
Visit each tensor parameter in the module with a visitor.
§fn map<M>(self, mapper: &mut M) -> RunningState<Tensor<B, D>>where
M: ModuleMapper<B>,
fn map<M>(self, mapper: &mut M) -> RunningState<Tensor<B, D>>where
M: ModuleMapper<B>,
Map each tensor parameter in the module with a mapper.
§fn into_record(self) -> <RunningState<Tensor<B, D>> as Module<B>>::Record
fn into_record(self) -> <RunningState<Tensor<B, D>> as Module<B>>::Record
Convert the module into a record containing the state.
§fn load_record(
self,
record: <RunningState<Tensor<B, D>> as Module<B>>::Record,
) -> RunningState<Tensor<B, D>>
fn load_record( self, record: <RunningState<Tensor<B, D>> as Module<B>>::Record, ) -> RunningState<Tensor<B, D>>
Load the module state from a record.
§fn to_device(
self,
device: &<B as Backend>::Device,
) -> RunningState<Tensor<B, D>>
fn to_device( self, device: &<B as Backend>::Device, ) -> RunningState<Tensor<B, D>>
Move the module and all of its sub-modules to the given device. Read more
§fn fork(self, device: &<B as Backend>::Device) -> RunningState<Tensor<B, D>>
fn fork(self, device: &<B as Backend>::Device) -> RunningState<Tensor<B, D>>
Fork the module and all of its sub-modules to the given device. Read more
§fn collect_devices(
&self,
devices: Vec<<B as Backend>::Device>,
) -> Vec<<B as Backend>::Device>
fn collect_devices( &self, devices: Vec<<B as Backend>::Device>, ) -> Vec<<B as Backend>::Device>
Return all the devices found in the underneath module tree added to the given vector
without duplicates.
§fn devices(&self) -> Vec<<B as Backend>::Device>
fn devices(&self) -> Vec<<B as Backend>::Device>
Return all the devices found in the underneath module tree without duplicates.
§fn num_params(&self) -> usize
fn num_params(&self) -> usize
Get the number of parameters the module has, including all of its sub-modules.
§fn save_file<FR, PB>(
self,
file_path: PB,
recorder: &FR,
) -> Result<(), RecorderError>
fn save_file<FR, PB>( self, file_path: PB, recorder: &FR, ) -> Result<(), RecorderError>
Save the module to a file using the provided file recorder. Read more
§fn load_file<FR, PB>(
self,
file_path: PB,
recorder: &FR,
device: &<B as Backend>::Device,
) -> Result<Self, RecorderError>
fn load_file<FR, PB>( self, file_path: PB, recorder: &FR, device: &<B as Backend>::Device, ) -> Result<Self, RecorderError>
Load the module from a file using the provided file recorder. Read more
§fn quantize_weights<C>(self, quantizer: &mut Quantizer<C>) -> Selfwhere
C: Calibration,
fn quantize_weights<C>(self, quantizer: &mut Quantizer<C>) -> Selfwhere
C: Calibration,
Quantize the weights of the module.
§impl<V> ModuleDisplay for RunningState<V>
impl<V> ModuleDisplay for RunningState<V>
§fn format(&self, passed_settings: DisplaySettings) -> String
fn format(&self, passed_settings: DisplaySettings) -> String
Formats the module with provided display settings. Read more
§fn custom_settings(&self) -> Option<DisplaySettings>
fn custom_settings(&self) -> Option<DisplaySettings>
Custom display settings for the module. Read more
§impl<V> ModuleDisplayDefault for RunningState<V>
impl<V> ModuleDisplayDefault for RunningState<V>
Auto Trait Implementations§
impl<V> Freeze for RunningState<V>
impl<V> RefUnwindSafe for RunningState<V>
impl<V> Send for RunningState<V>where
V: Send,
impl<V> Sync for RunningState<V>where
V: Send,
impl<V> Unpin for RunningState<V>
impl<V> UnwindSafe for RunningState<V>
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of [
ToCompactString::to_compact_string()
] Read more§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a [
CompactString
]. Read more