pub struct ResidentOdeExecution {
pub reply: EvalReply,
pub executor: TensorExecutorCard,
pub modeled_snapshot: Option<ModeledComputeSnapshot>,
pub modeled_readbacks: Option<usize>,
pub final_flush: SubmissionEvidence,
}Expand description
Result plus provider counters for a resident ODE execution.
Fields§
§reply: EvalReplyEval reply produced by the canonical numeric pipeline.
executor: TensorExecutorCardExecutor descriptor used for the resident tensor placement.
modeled_snapshot: Option<ModeledComputeSnapshot>Counter snapshot after final synchronization when the executor is modeled.
modeled_readbacks: Option<usize>Resident readbacks performed while executing the request when known.
final_flush: SubmissionEvidenceAccepted tensor submissions represented by the final flush.
Trait Implementations§
Source§impl Clone for ResidentOdeExecution
impl Clone for ResidentOdeExecution
Source§fn clone(&self) -> ResidentOdeExecution
fn clone(&self) -> ResidentOdeExecution
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 moreAuto Trait Implementations§
impl !RefUnwindSafe for ResidentOdeExecution
impl !UnwindSafe for ResidentOdeExecution
impl Freeze for ResidentOdeExecution
impl Send for ResidentOdeExecution
impl Sync for ResidentOdeExecution
impl Unpin for ResidentOdeExecution
impl UnsafeUnpin for ResidentOdeExecution
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