#[repr(u8)]pub enum ComputeUniverse {
LlmInference = 0,
Tensor10D = 1,
Viewport = 2,
AcousticPlane = 3,
}Expand description
Parallel compute plane on shared silicon (maps to 10D q / w semantics).
Variants§
LlmInference = 0
U0 — LLM forward pass, KV cache, weight staging.
Tensor10D = 1
U1 — baked 10D tensor SOA, kNN / spatial filters.
Viewport = 2
U2 — projector, ambient, bloom.
AcousticPlane = 3
U3 — AcousticPlane; read-only pin on U1 SOA + sonic token SPSC (no extra ledger slice yet).
Implementations§
Source§impl ComputeUniverse
impl ComputeUniverse
Sourcepub fn qualia_primitives(self) -> &'static [QualiaPrimitive]
pub fn qualia_primitives(self) -> &'static [QualiaPrimitive]
Native primitives this universe must use (documentation + static dispatch hooks).
pub fn phase8_channels(self) -> &'static [Phase8Channel]
Source§impl ComputeUniverse
impl ComputeUniverse
pub const ALL: [Self; 4]
Sourcepub fn partition_index(self) -> usize
pub fn partition_index(self) -> usize
Physical ledger partition index (U3 aliases U1 until acoustic sidecar pins land).
pub fn label(self) -> &'static str
pub fn default_queue_lane(self) -> QueueLane
pub fn ledger_slots(self) -> &'static [VramLedgerSlot]
Trait Implementations§
Source§impl Clone for ComputeUniverse
impl Clone for ComputeUniverse
Source§fn clone(&self) -> ComputeUniverse
fn clone(&self) -> ComputeUniverse
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 ComputeUniverse
impl Debug for ComputeUniverse
Source§impl Hash for ComputeUniverse
impl Hash for ComputeUniverse
Source§impl PartialEq for ComputeUniverse
impl PartialEq for ComputeUniverse
Source§fn eq(&self, other: &ComputeUniverse) -> bool
fn eq(&self, other: &ComputeUniverse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ComputeUniverse
impl Eq for ComputeUniverse
impl StructuralPartialEq for ComputeUniverse
Auto Trait Implementations§
impl Freeze for ComputeUniverse
impl RefUnwindSafe for ComputeUniverse
impl Send for ComputeUniverse
impl Sync for ComputeUniverse
impl Unpin for ComputeUniverse
impl UnsafeUnpin for ComputeUniverse
impl UnwindSafe for ComputeUniverse
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. 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