pub struct UniverseFabric {
pub orchestrator: UniverseOrchestrator,
pub substrate: GraphTensorSubstrate,
}Expand description
Qualia fabric: ledger orchestration + shared substrate + Phase-8 context ring.
Fields§
§orchestrator: UniverseOrchestrator§substrate: GraphTensorSubstrateImplementations§
Source§impl UniverseFabric
impl UniverseFabric
pub fn current(ledger: &VramLedger) -> Self
Sourcepub fn reserve_protects_llm_kv(&self, global: OperationalMode) -> bool
pub fn reserve_protects_llm_kv(&self, global: OperationalMode) -> bool
Reserve mode: U2 capped, U0 KV stays Full (LLM wins scheduling).
pub fn queue_for(&self, universe: ComputeUniverse) -> QueueLane
pub fn can_pin_tensor(&self, ledger: &VramLedger, extra_bytes: u64) -> bool
Auto Trait Implementations§
impl Freeze for UniverseFabric
impl RefUnwindSafe for UniverseFabric
impl Send for UniverseFabric
impl Sync for UniverseFabric
impl Unpin for UniverseFabric
impl UnsafeUnpin for UniverseFabric
impl UnwindSafe for UniverseFabric
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
§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