Skip to main content

StreamAllocation

Struct StreamAllocation 

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

Handle to a stream-ordered memory allocation.

The allocation is produced by the pool’s faithful CPU model — the source of truth for byte accounting, block reuse, and per-stream ordering. It is associated with a specific stream and memory pool: it becomes available when all preceding work on the stream has completed, and is returned to the pool when freed (also stream-ordered).

§Pointer semantics

as_ptr returns the model address, which is the allocator’s identity token — not a device pointer you can pass to a kernel. Obtaining a real on-device CUdeviceptr requires the driver-backed cuMemAllocAsync / cuMemAllocFromPoolAsync path (see the module’s gpu_* bindings); the model address is stable and unique for reuse and ordering bookkeeping only.

Implementations§

Source§

impl StreamAllocation

Source

pub fn as_ptr(&self) -> u64

Returns the allocator’s model address as a raw u64.

This is a stable, unique identity token used for reuse and ordering bookkeeping — not a dereferenceable on-device CUdeviceptr. A real device pointer must be obtained via the driver-backed cuMemAllocAsync path (see the type-level documentation).

Source

pub fn size(&self) -> usize

Returns the allocation size in bytes.

Source

pub fn is_freed(&self) -> bool

Returns true if this allocation has been freed.

Source

pub fn stream(&self) -> u64

Returns the stream handle this allocation is ordered on.

Source

pub fn stream_id(&self) -> StreamOrderId

Returns the ordering identifier of the stream this allocation is bound to in the owning pool’s stream-ordered model.

Source

pub fn ready_seq(&self) -> u64

Returns the sequence number at which this allocation becomes valid on its stream within the owning pool’s StreamOrderModel.

The allocation is safe to read on its own stream only once that stream has executed past this point (queryable via StreamMemoryPool::is_ready).

Source

pub fn pool(&self) -> u64

Returns the pool handle that owns this allocation.

Trait Implementations§

Source§

impl Debug for StreamAllocation

Source§

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

Formats the value using the given formatter. 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.

Source§

impl<T> Instrument for T

Source§

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

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

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

impl<T> WithSubscriber for T

Source§

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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