pub struct WeightMaterializationReport {
pub admitted_working_set_bytes: u64,
pub transformed_weights: usize,
pub source_tiles: usize,
pub peak_in_flight_tiles: usize,
pub source_bytes_read: u64,
pub output_bytes: u64,
pub peak_planned_working_set_bytes: u64,
pub largest_source_tile_bytes: u64,
pub largest_output_tile_bytes: u64,
}Expand description
Deterministic telemetry from one bounded weight-materialization pass.
Fields§
§admitted_working_set_bytes: u64Planner ceiling for simultaneously live conversion data.
transformed_weights: usizeNumber of dense semantic matrices transformed.
source_tiles: usizeNumber of independently evaluated source row tiles.
peak_in_flight_tiles: usizeLargest number of submitted tile completions retained simultaneously.
source_bytes_read: u64Total logical dense bytes selected from the source store.
output_bytes: u64Total encoded output bytes written to persistent storage.
peak_planned_working_set_bytes: u64Largest conservative conversion working set admitted for one tile.
largest_source_tile_bytes: u64Largest source recipe output tile.
largest_output_tile_bytes: u64Largest encoded output tile written together.
Trait Implementations§
Source§impl Clone for WeightMaterializationReport
impl Clone for WeightMaterializationReport
Source§fn clone(&self) -> WeightMaterializationReport
fn clone(&self) -> WeightMaterializationReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WeightMaterializationReport
impl Debug for WeightMaterializationReport
Source§impl Default for WeightMaterializationReport
impl Default for WeightMaterializationReport
Source§fn default() -> WeightMaterializationReport
fn default() -> WeightMaterializationReport
Returns the “default value” for a type. Read more
impl Eq for WeightMaterializationReport
impl StructuralPartialEq for WeightMaterializationReport
Auto Trait Implementations§
impl Freeze for WeightMaterializationReport
impl RefUnwindSafe for WeightMaterializationReport
impl Send for WeightMaterializationReport
impl Sync for WeightMaterializationReport
impl Unpin for WeightMaterializationReport
impl UnsafeUnpin for WeightMaterializationReport
impl UnwindSafe for WeightMaterializationReport
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