pub struct AlgorithmId {
pub id: u64,
pub category: GemmCategory,
pub name: String,
}Expand description
Unique identifier for a GEMM algorithm.
Each algorithm ID is globally unique within a process and carries metadata about the algorithm category and a human-readable name.
Fields§
§id: u64Unique numeric identifier, monotonically increasing.
category: GemmCategoryThe GEMM category this algorithm targets.
name: StringHuman-readable algorithm name.
Trait Implementations§
Source§impl Clone for AlgorithmId
impl Clone for AlgorithmId
Source§fn clone(&self) -> AlgorithmId
fn clone(&self) -> AlgorithmId
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AlgorithmId
impl Debug for AlgorithmId
Source§impl Display for AlgorithmId
impl Display for AlgorithmId
Source§impl Hash for AlgorithmId
impl Hash for AlgorithmId
Source§impl PartialEq for AlgorithmId
impl PartialEq for AlgorithmId
Source§fn eq(&self, other: &AlgorithmId) -> bool
fn eq(&self, other: &AlgorithmId) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AlgorithmId
impl StructuralPartialEq for AlgorithmId
Auto Trait Implementations§
impl Freeze for AlgorithmId
impl RefUnwindSafe for AlgorithmId
impl Send for AlgorithmId
impl Sync for AlgorithmId
impl Unpin for AlgorithmId
impl UnsafeUnpin for AlgorithmId
impl UnwindSafe for AlgorithmId
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more