pub struct Loihi2Neuron {
pub s1: i32,
pub s2: i32,
pub s3: i32,
pub tau1: i32,
pub tau2: i32,
pub tau3: i32,
pub w12: i32,
pub w13: i32,
pub w23: i32,
pub s1_threshold: i32,
pub s1_reset: i32,
pub s3_incr: i32,
}Expand description
Loihi 2 — Intel Loihi 2 three-state integer neuron.
Fields§
§s1: i32§s2: i32§s3: i32§tau1: i32§tau2: i32§tau3: i32§w12: i32§w13: i32§w23: i32§s1_threshold: i32§s1_reset: i32§s3_incr: i32Implementations§
Trait Implementations§
Source§impl Clone for Loihi2Neuron
impl Clone for Loihi2Neuron
Source§fn clone(&self) -> Loihi2Neuron
fn clone(&self) -> Loihi2Neuron
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 Loihi2Neuron
impl Debug for Loihi2Neuron
Auto Trait Implementations§
impl Freeze for Loihi2Neuron
impl RefUnwindSafe for Loihi2Neuron
impl Send for Loihi2Neuron
impl Sync for Loihi2Neuron
impl Unpin for Loihi2Neuron
impl UnsafeUnpin for Loihi2Neuron
impl UnwindSafe for Loihi2Neuron
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> 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