pub struct RuntimeFlopsEstimate {
pub prefill_flops: u128,
pub decode_token_flops: u128,
pub total_flops: u128,
}Fields§
§prefill_flops: u128§decode_token_flops: u128§total_flops: u128Trait Implementations§
Source§impl Clone for RuntimeFlopsEstimate
impl Clone for RuntimeFlopsEstimate
Source§fn clone(&self) -> RuntimeFlopsEstimate
fn clone(&self) -> RuntimeFlopsEstimate
Returns a duplicate of the value. Read more
1.0.0 · 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 RuntimeFlopsEstimate
impl Debug for RuntimeFlopsEstimate
Source§impl PartialEq for RuntimeFlopsEstimate
impl PartialEq for RuntimeFlopsEstimate
impl Copy for RuntimeFlopsEstimate
impl Eq for RuntimeFlopsEstimate
impl StructuralPartialEq for RuntimeFlopsEstimate
Auto Trait Implementations§
impl Freeze for RuntimeFlopsEstimate
impl RefUnwindSafe for RuntimeFlopsEstimate
impl Send for RuntimeFlopsEstimate
impl Sync for RuntimeFlopsEstimate
impl Unpin for RuntimeFlopsEstimate
impl UnsafeUnpin for RuntimeFlopsEstimate
impl UnwindSafe for RuntimeFlopsEstimate
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