pub struct ForwardPassPerfDiagnostics {
pub source: ForwardPassPerfSource,
pub readiness: ForwardPassPerfReadiness,
pub retained_observations: usize,
pub correction_ready_buckets: usize,
pub last_warning: Option<String>,
}Expand description
Current readiness and tuning state for a ForwardPassPerfModel.
Fields§
§source: ForwardPassPerfSourceActive prediction source. Native models become aic_with_correction
after at least one inferred workload kind has enough correction samples.
readiness: ForwardPassPerfReadinessWhether the model can currently produce learned estimates for at least one workload kind, or why it cannot.
retained_observations: usizeNumber of retained tuning observations across all inferred workload kinds.
correction_ready_buckets: usizeNumber of populated native-correction regions whose workload kind has at least
min_observations total retained samples.
last_warning: Option<String>Fallback reason when best_available had to use regression instead of native AIC.
Trait Implementations§
Source§impl Clone for ForwardPassPerfDiagnostics
impl Clone for ForwardPassPerfDiagnostics
Source§fn clone(&self) -> ForwardPassPerfDiagnostics
fn clone(&self) -> ForwardPassPerfDiagnostics
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 ForwardPassPerfDiagnostics
impl Debug for ForwardPassPerfDiagnostics
Source§impl<'de> Deserialize<'de> for ForwardPassPerfDiagnostics
impl<'de> Deserialize<'de> for ForwardPassPerfDiagnostics
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
impl StructuralPartialEq for ForwardPassPerfDiagnostics
Auto Trait Implementations§
impl Freeze for ForwardPassPerfDiagnostics
impl RefUnwindSafe for ForwardPassPerfDiagnostics
impl Send for ForwardPassPerfDiagnostics
impl Sync for ForwardPassPerfDiagnostics
impl Unpin for ForwardPassPerfDiagnostics
impl UnsafeUnpin for ForwardPassPerfDiagnostics
impl UnwindSafe for ForwardPassPerfDiagnostics
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