pub struct TensorStudySnapshot {
pub cpu_fallbacks: u64,
pub provider_completions: u64,
pub provider_failures: u64,
pub last_route: ProviderRoute,
}Expand description
Stable solver counters and last route.
Fields§
§cpu_fallbacks: u64Requests routed to the deterministic CPU reference before submission.
provider_completions: u64Requests completed through an active Tensor executor.
provider_failures: u64Selected provider requests that failed without CPU restart.
last_route: ProviderRouteMost recent routing outcome.
Trait Implementations§
Source§impl Clone for TensorStudySnapshot
impl Clone for TensorStudySnapshot
Source§fn clone(&self) -> TensorStudySnapshot
fn clone(&self) -> TensorStudySnapshot
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 TensorStudySnapshot
impl Debug for TensorStudySnapshot
Source§impl Default for TensorStudySnapshot
impl Default for TensorStudySnapshot
impl Eq for TensorStudySnapshot
Source§impl PartialEq for TensorStudySnapshot
impl PartialEq for TensorStudySnapshot
impl StructuralPartialEq for TensorStudySnapshot
Auto Trait Implementations§
impl Freeze for TensorStudySnapshot
impl RefUnwindSafe for TensorStudySnapshot
impl Send for TensorStudySnapshot
impl Sync for TensorStudySnapshot
impl Unpin for TensorStudySnapshot
impl UnsafeUnpin for TensorStudySnapshot
impl UnwindSafe for TensorStudySnapshot
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