pub struct MetalDeviceInfo {
pub max_threadgroup_size: usize,
pub shared_memory_size: usize,
pub supports_simdgroups: bool,
pub is_apple_silicon: bool,
pub has_neural_engine: bool,
pub device_name: String,
}
Expand description
Metal device information for optimization
Fields§
§max_threadgroup_size: usize
§supports_simdgroups: bool
§is_apple_silicon: bool
§has_neural_engine: bool
§device_name: String
Implementations§
Trait Implementations§
Source§impl Debug for MetalDeviceInfo
impl Debug for MetalDeviceInfo
Auto Trait Implementations§
impl Freeze for MetalDeviceInfo
impl RefUnwindSafe for MetalDeviceInfo
impl Send for MetalDeviceInfo
impl Sync for MetalDeviceInfo
impl Unpin for MetalDeviceInfo
impl UnwindSafe for MetalDeviceInfo
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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