Struct timecat::nnue::layer::Layer

source ·
pub struct Layer<W: BinRead<Args = ()> + Debug, B: BinRead<Args = ()>, const NUM_INPUTS: usize, const NUM_OUTPUTS: usize> { /* private fields */ }

Implementations§

source§

impl<W: BinRead<Args = ()> + Debug, B: BinRead<Args = ()>, const NUM_INPUTS: usize, const NUM_OUTPUTS: usize> Layer<W, B, NUM_INPUTS, NUM_OUTPUTS>

source

pub fn get_weights_transpose(&self) -> &[MathVec<W, NUM_INPUTS>; NUM_OUTPUTS]

source

pub fn get_biases(&self) -> &MathVec<B, NUM_OUTPUTS>

source§

impl<W: BinRead<Args = ()> + Clone + Debug, B: BinRead<Args = ()> + Clone + AddAssign + From<W> + Mul + Sum<<B as Mul>::Output>, const NUM_INPUTS: usize, const NUM_OUTPUTS: usize> Layer<W, B, NUM_INPUTS, NUM_OUTPUTS>

source

pub fn forward(&self, inputs: MathVec<W, NUM_INPUTS>) -> MathVec<B, NUM_OUTPUTS>

Trait Implementations§

source§

impl<W: BinRead<Args = ()> + Debug, B: BinRead<Args = ()>, const NUM_INPUTS: usize, const NUM_OUTPUTS: usize> BinRead for Layer<W, B, NUM_INPUTS, NUM_OUTPUTS>

§

type Args = ()

The type of arguments needed to be supplied in order to read this type, usually a tuple. Read more
source§

fn read_options<R: Read + Seek>( __binread_generated_var_reader: &mut R, __binread_generated_var_options: &ReadOptions, __binread_generated_var_arguments: Self::Args, ) -> BinResult<Self>

Read the type from the reader
source§

fn read<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + Seek,

Read the type from the reader while assuming no arguments have been passed Read more
source§

fn read_args<R>(reader: &mut R, args: Self::Args) -> Result<Self, Error>
where R: Read + Seek,

Read the type from the reader using the specified arguments
source§

fn after_parse<R>( &mut self, _: &mut R, _: &ReadOptions, _: Self::Args, ) -> Result<(), Error>
where R: Read + Seek,

source§

fn args_default() -> Option<Self::Args>

The default arguments to be used when using the read shortcut method. Override this for any type that optionally requries arguments
source§

impl<W: Clone + BinRead<Args = ()> + Debug, B: Clone + BinRead<Args = ()>, const NUM_INPUTS: usize, const NUM_OUTPUTS: usize> Clone for Layer<W, B, NUM_INPUTS, NUM_OUTPUTS>

source§

fn clone(&self) -> Layer<W, B, NUM_INPUTS, NUM_OUTPUTS>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<W: Debug + BinRead<Args = ()> + Debug, B: Debug + BinRead<Args = ()>, const NUM_INPUTS: usize, const NUM_OUTPUTS: usize> Debug for Layer<W, B, NUM_INPUTS, NUM_OUTPUTS>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de, W, B, const NUM_INPUTS: usize, const NUM_OUTPUTS: usize> Deserialize<'de> for Layer<W, B, NUM_INPUTS, NUM_OUTPUTS>
where W: Deserialize<'de> + BinRead<Args = ()> + Debug, B: Deserialize<'de> + BinRead<Args = ()>,

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<W, B, const NUM_INPUTS: usize, const NUM_OUTPUTS: usize> Serialize for Layer<W, B, NUM_INPUTS, NUM_OUTPUTS>
where W: Serialize + BinRead<Args = ()> + Debug, B: Serialize + BinRead<Args = ()>,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl<W, B, const NUM_INPUTS: usize, const NUM_OUTPUTS: usize> Freeze for Layer<W, B, NUM_INPUTS, NUM_OUTPUTS>

§

impl<W, B, const NUM_INPUTS: usize, const NUM_OUTPUTS: usize> RefUnwindSafe for Layer<W, B, NUM_INPUTS, NUM_OUTPUTS>

§

impl<W, B, const NUM_INPUTS: usize, const NUM_OUTPUTS: usize> Send for Layer<W, B, NUM_INPUTS, NUM_OUTPUTS>
where B: Send, W: Send,

§

impl<W, B, const NUM_INPUTS: usize, const NUM_OUTPUTS: usize> Sync for Layer<W, B, NUM_INPUTS, NUM_OUTPUTS>
where B: Sync, W: Sync,

§

impl<W, B, const NUM_INPUTS: usize, const NUM_OUTPUTS: usize> Unpin for Layer<W, B, NUM_INPUTS, NUM_OUTPUTS>

§

impl<W, B, const NUM_INPUTS: usize, const NUM_OUTPUTS: usize> UnwindSafe for Layer<W, B, NUM_INPUTS, NUM_OUTPUTS>
where B: UnwindSafe, W: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FromQuery for T

§

type Target = T

Target type after parsing.
§

type Error = HistoryError

Error that can occur while parsing.
source§

fn from_query( query: &str, ) -> Result<<T as FromQuery>::Target, <T as FromQuery>::Error>

Decode this query string into the target type.
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToQuery for T
where T: Serialize,

§

type Error = HistoryError

Error that can be returned from the conversion.
source§

fn to_query(&self) -> Result<Cow<'_, str>, <T as ToQuery>::Error>

Method to encode the query into a string.
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,