pub struct Hypothesis {
pub id: NodeId,
pub statement: String,
pub space_name: String,
pub expects_improvement: bool,
pub confidence: f64,
pub depends_on: Vec<NodeId>,
pub experiments: Vec<NodeId>,
pub active: bool,
pub created_ms: u64,
}Expand description
A hypothesis: a testable claim about an optimization strategy.
Fields§
§id: NodeId§statement: StringHuman-readable statement, e.g. “coop_gemv improves decode tok/s by >20%”.
space_name: StringThe configuration space this hypothesis operates on.
expects_improvement: boolExpected direction: true = improvement, false = regression.
confidence: f64Current confidence in [-1, 1]: -1 = refuted, 0 = unknown, +1 = confirmed.
depends_on: Vec<NodeId>IDs of hypotheses this depends on (predecessors in the DAG).
experiments: Vec<NodeId>IDs of experiments that have tested this hypothesis.
active: boolWhether this hypothesis is active (eligible for testing).
created_ms: u64Creation timestamp (unix ms).
Implementations§
Trait Implementations§
Source§impl Clone for Hypothesis
impl Clone for Hypothesis
Source§fn clone(&self) -> Hypothesis
fn clone(&self) -> Hypothesis
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 Hypothesis
impl Debug for Hypothesis
Source§impl<'de> Deserialize<'de> for Hypothesis
impl<'de> Deserialize<'de> for Hypothesis
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
Auto Trait Implementations§
impl Freeze for Hypothesis
impl RefUnwindSafe for Hypothesis
impl Send for Hypothesis
impl Sync for Hypothesis
impl Unpin for Hypothesis
impl UnsafeUnpin for Hypothesis
impl UnwindSafe for Hypothesis
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