pub struct DeviceDescriptor {
pub id: DeviceId,
pub vendor: Vendor,
pub name: String,
pub arch: String,
pub total_memory_bytes: u64,
pub multiprocessor_count: u32,
pub clock_khz: u32,
pub capability: Capability,
}Fields§
§id: DeviceId§vendor: Vendor§name: StringMarketing name (e.g. “NVIDIA H100 80GB HBM3”).
arch: StringVendor architecture string (e.g. “sm_90a”, “gfx942”, “Apple9”, “v75”).
total_memory_bytes: u64§multiprocessor_count: u32§clock_khz: u32§capability: CapabilityTrait Implementations§
Source§impl Clone for DeviceDescriptor
impl Clone for DeviceDescriptor
Source§fn clone(&self) -> DeviceDescriptor
fn clone(&self) -> DeviceDescriptor
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 DeviceDescriptor
impl Debug for DeviceDescriptor
Source§impl<'de> Deserialize<'de> for DeviceDescriptor
impl<'de> Deserialize<'de> for DeviceDescriptor
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DeviceDescriptor
impl RefUnwindSafe for DeviceDescriptor
impl Send for DeviceDescriptor
impl Sync for DeviceDescriptor
impl Unpin for DeviceDescriptor
impl UnsafeUnpin for DeviceDescriptor
impl UnwindSafe for DeviceDescriptor
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