pub struct StateSink {
pub tensors: Vec<(String, TensorData)>,
pub scalars: Vec<(String, Scalar)>,
}Expand description
Accumulates the named tensors and scalars produced while flattening a RecordState.
Fields§
§tensors: Vec<(String, TensorData)>The collected (name, data) tensor leaves.
scalars: Vec<(String, Scalar)>The collected (name, value) scalar leaves.
Implementations§
Source§impl StateSink
impl StateSink
Sourcepub fn push_tensor(&mut self, prefix: &str, leaf: &str, data: TensorData)
pub fn push_tensor(&mut self, prefix: &str, leaf: &str, data: TensorData)
Record a tensor leaf named {prefix}.{leaf}.
Sourcepub fn push_scalar(&mut self, prefix: &str, leaf: &str, value: Scalar)
pub fn push_scalar(&mut self, prefix: &str, leaf: &str, value: Scalar)
Record a scalar leaf named {prefix}.{leaf}.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for StateSink
impl !UnwindSafe for StateSink
impl Freeze for StateSink
impl Send for StateSink
impl Sync for StateSink
impl Unpin for StateSink
impl UnsafeUnpin for StateSink
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§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