pub struct WeightLoadingConfig {
pub format: Option<WeightFormat>,
pub lazy_loading: bool,
pub memory_mapped: bool,
pub streaming: bool,
pub device: String,
pub dtype: WeightDataType,
pub quantization: Option<QuantizationConfig>,
pub cache_dir: Option<PathBuf>,
pub verify_checksums: bool,
pub distributed: Option<DistributedConfig>,
}Expand description
Weight loading configuration
Fields§
§format: Option<WeightFormat>§lazy_loading: bool§memory_mapped: bool§streaming: bool§device: String§dtype: WeightDataType§quantization: Option<QuantizationConfig>§cache_dir: Option<PathBuf>§verify_checksums: bool§distributed: Option<DistributedConfig>Trait Implementations§
Source§impl Clone for WeightLoadingConfig
impl Clone for WeightLoadingConfig
Source§fn clone(&self) -> WeightLoadingConfig
fn clone(&self) -> WeightLoadingConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 WeightLoadingConfig
impl Debug for WeightLoadingConfig
Auto Trait Implementations§
impl Freeze for WeightLoadingConfig
impl RefUnwindSafe for WeightLoadingConfig
impl Send for WeightLoadingConfig
impl Sync for WeightLoadingConfig
impl Unpin for WeightLoadingConfig
impl UnsafeUnpin for WeightLoadingConfig
impl UnwindSafe for WeightLoadingConfig
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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