pub struct InterpretedPhenotype<B: Backend> { /* private fields */ }Expand description
Host-side feedforward reference phenotype.
Stores only host-side evaluation metadata (topological order, per-node
incoming edges, biases, activations) — no Burn tensors — so it is
trivially Send + Sync and cheap to construct. The forward device is taken
from the input tensor.
Implementations§
Source§impl<B: Backend> InterpretedPhenotype<B>
impl<B: Backend> InterpretedPhenotype<B>
Sourcepub fn new(genome: &TopologyGenome) -> Self
pub fn new(genome: &TopologyGenome) -> Self
Compile a genome into an evaluation plan.
Nodes are ordered topologically over all structural edges; because every genome maintains the feedforward DAG invariant, this order is valid for the enabled subgraph the forward pass actually follows.
Trait Implementations§
Source§impl<B: Clone + Backend> Clone for InterpretedPhenotype<B>
impl<B: Clone + Backend> Clone for InterpretedPhenotype<B>
Source§fn clone(&self) -> InterpretedPhenotype<B>
fn clone(&self) -> InterpretedPhenotype<B>
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 moreAuto Trait Implementations§
impl<B> Freeze for InterpretedPhenotype<B>
impl<B> RefUnwindSafe for InterpretedPhenotype<B>
impl<B> Send for InterpretedPhenotype<B>
impl<B> Sync for InterpretedPhenotype<B>
impl<B> Unpin for InterpretedPhenotype<B>
impl<B> UnsafeUnpin for InterpretedPhenotype<B>
impl<B> UnwindSafe for InterpretedPhenotype<B>
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<C> CloneExpand for Cwhere
C: Clone,
impl<C> CloneExpand for Cwhere
C: Clone,
fn __expand_clone_method(&self, _scope: &mut Scope) -> C
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