DerivedStore

Struct DerivedStore 

Source
pub struct DerivedStore { /* private fields */ }
Expand description

Device buffers a loader derived from this store’s tensors.

Implementations§

Source§

impl DerivedStore

Source

pub fn adopt(&self, label: &'static str, ptr: DevicePtr, bytes: usize)

Take ownership of a derived buffer.

label is a static category (“ssm qkvz fp8 concat”, “attn fp8 twin”), not a per-tensor name: the report aggregates, and a String per buffer would allocate once per layer per twin for text nobody reads per entry.

Source

pub fn disown(&self, ptr: DevicePtr) -> Option<usize>

Give up ownership of a buffer the caller is about to free itself.

The transient half of a fused concat is adopted by the generic loader that produced it and then freed by the loader that consumed it (qwen35_dense.rs, the GDN [QKV|Z] arm). Without this the pointer would be freed twice — once there, once at teardown. Returns the bytes that left the ledger, or None if this store never held it.

Source

pub fn bytes(&self) -> usize

Total adopted bytes still live.

Source

pub fn len(&self) -> usize

Source

pub fn is_empty(&self) -> bool

Source

pub fn by_label(&self) -> Vec<(&'static str, usize, usize)>

label -> (bytes, count), biggest first, for the residency summary.

Source

pub fn release(&self, gpu: &dyn GpuBackend) -> Result<()>

Free everything adopted. Drains first, so a failure part-way through cannot leave a freed pointer in the list to be freed again.

Trait Implementations§

Source§

impl Default for DerivedStore

Source§

fn default() -> DerivedStore

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