pub struct DeviceConfig {
pub float_dtype: Option<FloatDType>,
pub int_dtype: Option<IntDType>,
pub bool_dtype: Option<BoolDType>,
}Expand description
Configuration options used to initialize a device.
Unlike DeviceSettings, this type represents partial user-provided
configuration and does not require all settings to be specified.
Any unspecified options will be resolved to device-specific defaults when the device is initialized.
Use Device::configure to apply this configuration to a device.
Fields§
§float_dtype: Option<FloatDType>Default floating-point data type.
int_dtype: Option<IntDType>Default integer data type.
bool_dtype: Option<BoolDType>Default boolean data type.
Implementations§
Source§impl DeviceConfig
impl DeviceConfig
Source§impl DeviceConfig
impl DeviceConfig
Sourcepub fn float_dtype(self, dtype: impl Into<FloatDType>) -> Self
pub fn float_dtype(self, dtype: impl Into<FloatDType>) -> Self
Sets the default floating-point data type for tensors created on the device.
Sourcepub fn int_dtype(self, dtype: impl Into<IntDType>) -> Self
pub fn int_dtype(self, dtype: impl Into<IntDType>) -> Self
Sets the default integer data type for tensors created on the device.
Sourcepub fn bool_dtype(self, dtype: impl Into<BoolDType>) -> Self
pub fn bool_dtype(self, dtype: impl Into<BoolDType>) -> Self
Sets the default boolean data type storage precision for tensors created on the device.
Trait Implementations§
Source§impl Clone for DeviceConfig
impl Clone for DeviceConfig
Source§fn clone(&self) -> DeviceConfig
fn clone(&self) -> DeviceConfig
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 DeviceConfig
impl Debug for DeviceConfig
Source§impl Default for DeviceConfig
impl Default for DeviceConfig
Source§fn default() -> DeviceConfig
fn default() -> DeviceConfig
Returns the “default value” for a type. Read more
Source§impl From<(FloatDType, IntDType)> for DeviceConfig
impl From<(FloatDType, IntDType)> for DeviceConfig
Source§fn from(value: (FloatDType, IntDType)) -> Self
fn from(value: (FloatDType, IntDType)) -> Self
Converts to this type from the input type.
Source§impl From<BoolStore> for DeviceConfig
impl From<BoolStore> for DeviceConfig
Source§impl From<FloatDType> for DeviceConfig
impl From<FloatDType> for DeviceConfig
Source§fn from(value: FloatDType) -> Self
fn from(value: FloatDType) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DeviceConfig
impl RefUnwindSafe for DeviceConfig
impl Send for DeviceConfig
impl Sync for DeviceConfig
impl Unpin for DeviceConfig
impl UnsafeUnpin for DeviceConfig
impl UnwindSafe for DeviceConfig
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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