#[repr(C, align(64))]pub struct P64WeightHeader {Show 13 fields
pub magic: [u8; 4],
pub version: u16,
pub flags: u16,
pub role_table_offset: u32,
pub tensor_table_offset: u32,
pub tokenizer_offset: u32,
pub hparams_offset: u32,
pub string_table_offset: u32,
pub checksum_offset: u32,
pub manifold_table_offset: u32,
pub tensor_count: u32,
pub page_size: u32,
pub reserved: [u8; 20],
}Fields§
§magic: [u8; 4]§version: u16§flags: u16§role_table_offset: u32§tensor_table_offset: u32§tokenizer_offset: u32§hparams_offset: u32§string_table_offset: u32§checksum_offset: u32§manifold_table_offset: u32§tensor_count: u32§page_size: u32§reserved: [u8; 20]Implementations§
Trait Implementations§
Source§impl Clone for P64WeightHeader
impl Clone for P64WeightHeader
Source§fn clone(&self) -> P64WeightHeader
fn clone(&self) -> P64WeightHeader
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 P64WeightHeader
impl Debug for P64WeightHeader
impl Copy for P64WeightHeader
Auto Trait Implementations§
impl Freeze for P64WeightHeader
impl RefUnwindSafe for P64WeightHeader
impl Send for P64WeightHeader
impl Sync for P64WeightHeader
impl Unpin for P64WeightHeader
impl UnsafeUnpin for P64WeightHeader
impl UnwindSafe for P64WeightHeader
Blanket Implementations§
§impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
Aggregate shares in an MPC protocol.
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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