Predictor

Struct Predictor 

Source
pub struct Predictor { /* private fields */ }

Implementations§

Source§

impl Predictor

Source

pub fn new( ctx: &CudaCtx, dims: PredictorDims, projection_seed: u64, ) -> Result<Self>

Source

pub fn new_on_stream( stream: u64, dims: PredictorDims, projection_seed: u64, ) -> Result<Self>

Source

pub fn project_q(&self, ctx: &CudaCtx, q: u64, q_proj: u64) -> Result<()>

q device pointer to [num_q_heads, head_dim] BF16. q_proj device pointer to [num_q_heads, r] BF16 output.

Source

pub fn project_q_on_stream( &self, stream: u64, q: u64, q_proj: u64, ) -> Result<()>

Stream-only variant for production callers that already own a CUDA context (and therefore don’t need the test-side CudaCtx wrapper).

Source

pub fn project_kv_block( &self, ctx: &CudaCtx, layer: usize, block_id: usize, k_block: u64, ) -> Result<()>

Update A_g for a single (layer, block_id) slot from the K data the caller just wrote into the KV cache. k_block device ptr to [block_size, num_kv_heads, head_dim] BF16.

Source

pub fn project_kv_block_on_stream( &self, stream: u64, layer: usize, block_id: usize, k_block: u64, ) -> Result<()>

Source

pub fn score_blocks( &self, ctx: &CudaCtx, q_proj: u64, k_lr_seq: u64, scores_out: u64, num_active_blocks: usize, ) -> Result<()>

Score num_active_blocks (already-laid-out) blocks for the current layer. q_proj device ptr to [num_q_heads, r] BF16. a_g_seq is a device ptr to the active sequence’s per-block anchors at this layer ([num_active_blocks, num_kv_heads, r] BF16). scores_out is a device ptr to a [num_active_blocks] f32 buffer.

Source

pub fn score_blocks_on_stream( &self, stream: u64, q_proj: u64, k_lr_seq: u64, scores_out: u64, num_active_blocks: usize, ) -> Result<()>

Source

pub fn dims(&self) -> PredictorDims

Source

pub fn a_g_dev_ptr(&self) -> u64

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> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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, 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.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more