Skip to main content

RtTurboConfig

Struct RtTurboConfig 

Source
pub struct RtTurboConfig {
    pub low_dim: usize,
    pub sliding_window: usize,
    pub sink_tokens: usize,
    pub block_size: usize,
    pub retrieval_head_ratio: f32,
    pub top_p: f32,
    pub calibration_mode: CalibrationMode,
}
Expand description

Configuration for RTPurbo retrieval head sparse decode.

Feature gate: rt_turbo (opt-in, requires dash_attn). Adds head-wise retrieval/local classification + dynamic top-p token selection for decode-phase sparse attention. Complements DashAttention’s α-entmax block routing with per-head specialization.

Must pass 6/6 GOAT proofs before default-on promotion.

Fields ordered by descending alignment to minimize padding: usize (8B) → f32 (4B) → CalibrationMode (1B) — no padding between groups.

§Calibration mode (Plan 358)

CalibrationMode::AttentionMass is the default (cheaper: 1 forward pass). CalibrationMode::CausalNecessity is opt-in — strictly stronger on workloads with correlated bystanders but ~10–100× more expensive to calibrate. See calibrate_from_causal_scores in rt_turbo::calibration.

Fields§

§low_dim: usize

Low-dimensional projection size for pre-RoPE scoring (default: 16). Paper ablation: dim=16 is the sweet spot for low-frequency retrieval.

§sliding_window: usize

Sliding window size for local heads (default: 8192).

§sink_tokens: usize

Number of attention sink tokens always retained for local heads (default: 4).

§block_size: usize

Block size for block-level top-p variant (default: 64). Should match DashAttnConfig::chunk_size for consistent routing.

§retrieval_head_ratio: f32

Fraction of heads classified as retrieval heads (default: 0.15). Paper ablation: 15% is optimal balance of accuracy vs sparsity.

§top_p: f32

Cumulative attention mass threshold for dynamic top-p selection (default: 0.9). Paper ablation: top-p=0.9 preserves >93% attention mass at 97% sparsity.

§calibration_mode: CalibrationMode

Which score semantics to use for head calibration (Plan 358). Default: AttentionMass (cheaper). CausalNecessity is opt-in — strictly stronger on bystander-heavy workloads but ~10–100× more expensive. AdaptiveCausal (Proposal 004) is opt-in — cheap-proxy escalate, unvalidated, requires per-head OV norms from the caller.

Trait Implementations§

Source§

impl Clone for RtTurboConfig

Source§

fn clone(&self) -> RtTurboConfig

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for RtTurboConfig

Source§

impl Debug for RtTurboConfig

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for RtTurboConfig

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.