pub struct HotPathAudit {Show 18 fields
pub resident_decode: bool,
pub resident_prefill: bool,
pub resident_weights: bool,
pub coop_gemv: bool,
pub ffn_fusion_flag: bool,
pub ffn_fusion_in_resident_decode: bool,
pub kv_int8: bool,
pub attention_preproject: bool,
pub attention_o_fuse: bool,
pub prefer_cuda_gemm: bool,
pub cuda_caps: bool,
pub mode: String,
pub post_turn_verify: bool,
pub sentinel_mid: bool,
pub quant_graph: bool,
pub timestamps_supported: bool,
pub gpu_profile_env: bool,
pub notes: Vec<String>,
}Fields§
§resident_decode: bool§resident_prefill: bool§resident_weights: bool§coop_gemv: bool§ffn_fusion_flag: bool§ffn_fusion_in_resident_decode: bool§kv_int8: bool§attention_preproject: bool§attention_o_fuse: bool§prefer_cuda_gemm: bool§cuda_caps: bool§mode: String§post_turn_verify: bool§sentinel_mid: bool§quant_graph: bool§timestamps_supported: bool§gpu_profile_env: bool§notes: Vec<String>Implementations§
Source§impl HotPathAudit
impl HotPathAudit
pub fn format_report(&self) -> String
Trait Implementations§
Source§impl Clone for HotPathAudit
impl Clone for HotPathAudit
Source§fn clone(&self) -> HotPathAudit
fn clone(&self) -> HotPathAudit
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 Freeze for HotPathAudit
impl RefUnwindSafe for HotPathAudit
impl Send for HotPathAudit
impl Sync for HotPathAudit
impl Unpin for HotPathAudit
impl UnsafeUnpin for HotPathAudit
impl UnwindSafe for HotPathAudit
Blanket Implementations§
§impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
Aggregate shares in an MPC protocol.
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more