Skip to main content

KernelRegistry

Struct KernelRegistry 

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

Instance-scoped kernel registry.

Implementations§

Source§

impl KernelRegistry

Source

pub fn new() -> Self

Construct an empty registry.

Source

pub fn register(&self, entry: KernelEntry) -> Result<KernelId, AbiError>

Register a new kernel and return its assigned KernelId.

Returns AbiError::QuotaExceeded if either the per-instance kernel count cap (MAX_KERNELS_PER_INSTANCE) or the aggregate PTX-bytes cap (MAX_TOTAL_PTX_BYTES) would be exceeded.

Source

pub fn lookup( &self, id: KernelId, owner: InstanceId, ) -> Result<KernelHandle, AbiError>

Look up a kernel by id and return an independent handle.

Returns Err(AbiError::InvalidKernel) if the id is unknown or belongs to a different instance. The returned KernelHandle holds an Arc<Module> on CUDA builds, so callers may drop any borrowed dashmap entry before performing the launch — eliminating the UAF that the previous dashmap::Ref-derived raw-pointer scheme had.

Source

pub fn remove(&self, id: KernelId) -> Option<KernelEntry>

Remove a kernel from the registry (caller releases its handle).

On CUDA builds the underlying cust::module::Module is held inside an Arc; dropping the registry entry only decrements the strong count. If a concurrent launch is still holding a clone of the Arc, the module is not actually unloaded until that launch returns — eliminating the UAF window that existed when the registry owned the module by value.

Source

pub fn len(&self) -> usize

Number of currently-registered kernels.

Source

pub fn is_empty(&self) -> bool

True if there are no registered kernels.

Source

pub fn total_ptx_bytes(&self) -> u64

Aggregate PTX bytes currently retained by the registry. Visible for metrics and tests.

Trait Implementations§

Source§

impl Default for KernelRegistry

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