#[repr(C)]pub struct ManifoldCoordinate10D {
pub scale: f32,
pub attention_depth: f32,
pub epistemic_weight: f32,
pub topological_spin: f32,
pub temporal_decay: f32,
pub entropy_bias: f32,
pub spatial_phase: f32,
pub recurrence_frequency: f32,
pub density_threshold: f32,
pub manifold_curvature: f32,
}Expand description
Defines a tensor’s precise location in the 10D geometric frameset. This replaces the concept of integer chronological layers (e.g. “Layer 12”) with a continuous spatial coordinate in P64 containers.
Fields§
§scale: f32§attention_depth: f32§epistemic_weight: f32§topological_spin: f32§temporal_decay: f32§entropy_bias: f32§spatial_phase: f32§recurrence_frequency: f32§density_threshold: f32§manifold_curvature: f32Implementations§
Source§impl ManifoldCoordinate10D
impl ManifoldCoordinate10D
pub const DIMENSIONS: usize = 10
Sourcepub fn as_f32_array(&self) -> [f32; 10]
pub fn as_f32_array(&self) -> [f32; 10]
Raw f32 representation used by the fixed 64-byte P64 manifold record.
Sourcepub fn from_p64_bytes(bytes: &[u8]) -> Result<Self, String>
pub fn from_p64_bytes(bytes: &[u8]) -> Result<Self, String>
Decode one cache-line-sized P64 manifold record.
Sourcepub fn from_sequential_layer(layer: u32, total_layers: u32) -> Self
pub fn from_sequential_layer(layer: u32, total_layers: u32) -> Self
Map a legacy 1D sequential Transformer layer onto the 10D geometry
Trait Implementations§
Source§impl Clone for ManifoldCoordinate10D
impl Clone for ManifoldCoordinate10D
Source§fn clone(&self) -> ManifoldCoordinate10D
fn clone(&self) -> ManifoldCoordinate10D
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 ManifoldCoordinate10D
impl Debug for ManifoldCoordinate10D
Source§impl Default for ManifoldCoordinate10D
impl Default for ManifoldCoordinate10D
Source§fn default() -> ManifoldCoordinate10D
fn default() -> ManifoldCoordinate10D
Returns the “default value” for a type. Read more
Source§impl PartialEq for ManifoldCoordinate10D
impl PartialEq for ManifoldCoordinate10D
Source§fn eq(&self, other: &ManifoldCoordinate10D) -> bool
fn eq(&self, other: &ManifoldCoordinate10D) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ManifoldCoordinate10D
impl StructuralPartialEq for ManifoldCoordinate10D
Auto Trait Implementations§
impl Freeze for ManifoldCoordinate10D
impl RefUnwindSafe for ManifoldCoordinate10D
impl Send for ManifoldCoordinate10D
impl Sync for ManifoldCoordinate10D
impl Unpin for ManifoldCoordinate10D
impl UnsafeUnpin for ManifoldCoordinate10D
impl UnwindSafe for ManifoldCoordinate10D
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§impl<T> NoneValue for Twhere
T: Default,
impl<T> NoneValue for Twhere
T: Default,
type NoneType = T
§fn null_value() -> T
fn null_value() -> T
The none-equivalent value.