pub struct UniverseOrchestrator {
pub active_mode: OperationalMode,
pub partitions: [UniversePartition; 3],
}Expand description
Orchestrator enforces pinned boundaries on one adapter (Full / Eco / Reserve degrade per universe).
Fields§
§active_mode: OperationalMode§partitions: [UniversePartition; 3]Implementations§
Source§impl UniverseOrchestrator
impl UniverseOrchestrator
Sourcepub fn budget_triplet(
total_bytes: u64,
mode: OperationalMode,
) -> (u64, u64, u64)
pub fn budget_triplet( total_bytes: u64, mode: OperationalMode, ) -> (u64, u64, u64)
VRAM split for the active operational mode (consecutive pins, no thrashing).
Sourcepub fn from_total_budget(total_bytes: u64, mode: OperationalMode) -> Self
pub fn from_total_budget(total_bytes: u64, mode: OperationalMode) -> Self
Mode-aware ledger partition (Track B2.2).
Sourcepub fn from_total_budget_full(total_bytes: u64) -> Self
pub fn from_total_budget_full(total_bytes: u64) -> Self
Default split at Full fidelity: 55% U0 / 25% U1 / 15% U2 (~5% headroom implicit).
pub fn partition(&self, universe: ComputeUniverse) -> &UniversePartition
Sourcepub fn effective_mode(
&self,
universe: ComputeUniverse,
global: OperationalMode,
) -> OperationalMode
pub fn effective_mode( &self, universe: ComputeUniverse, global: OperationalMode, ) -> OperationalMode
Global mode mapped per universe — LLM (U0) wins under pressure.
pub fn max_particles( &self, universe: ComputeUniverse, global: OperationalMode, ) -> u32
pub fn bloom_enabled( &self, universe: ComputeUniverse, global: OperationalMode, ) -> bool
Trait Implementations§
Source§impl Clone for UniverseOrchestrator
impl Clone for UniverseOrchestrator
Source§fn clone(&self) -> UniverseOrchestrator
fn clone(&self) -> UniverseOrchestrator
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 UniverseOrchestrator
impl RefUnwindSafe for UniverseOrchestrator
impl Send for UniverseOrchestrator
impl Sync for UniverseOrchestrator
impl Unpin for UniverseOrchestrator
impl UnsafeUnpin for UniverseOrchestrator
impl UnwindSafe for UniverseOrchestrator
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