Skip to main content

KernelChannels

Struct KernelChannels 

Source
pub struct KernelChannels<const K: usize> {
    pub value: f64,
    pub gradient: [f64; K],
    pub hessian: [[f64; K]; K],
    pub third: Vec<([f64; K], [[f64; K]; K])>,
    pub fourth: Vec<([f64; K], [f64; K], [[f64; K]; K])>,
}
Expand description

One row’s worth of hand-written kernel outputs, as claimed by a RowKernel implementation, packaged for verification against the tower truth. Plain data (no trait coupling) so any kernel — whatever its visibility — can be audited from its own test module.

Fields§

§value: f64

Claimed (nll, ∇, H) from row_kernel.

§gradient: [f64; K]

Claimed gradient.

§hessian: [[f64; K]; K]

Claimed Hessian.

§third: Vec<([f64; K], [[f64; K]; K])>

Claimed row_third_contracted(dir) outputs as (dir, claim) pairs.

§fourth: Vec<([f64; K], [f64; K], [[f64; K]; K])>

Claimed row_fourth_contracted(u, v) outputs as (u, v, claim).

Auto Trait Implementations§

§

impl<const K: usize> Freeze for KernelChannels<K>

§

impl<const K: usize> RefUnwindSafe for KernelChannels<K>

§

impl<const K: usize> Send for KernelChannels<K>

§

impl<const K: usize> Sync for KernelChannels<K>

§

impl<const K: usize> Unpin for KernelChannels<K>

§

impl<const K: usize> UnsafeUnpin for KernelChannels<K>

§

impl<const K: usize> UnwindSafe for KernelChannels<K>

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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

Source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
Source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
Source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
Source§

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

Source§

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>,

Source§

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<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V