Skip to main content

ActivationCache

Struct ActivationCache 

Source
pub struct ActivationCache<L: LinAlg = CpuLinAlg> { /* private fields */ }
Expand description

Cache for hidden layer activations captured during inference.

Used by CCA neuron alignment during crossover to compare functional neuron responses between parent networks. Activations are recorded during normal fitness evaluation at zero additional compute cost.

Generic over a LinAlg backend L. Defaults to CpuLinAlg.

§Examples

use pc_rl_core::pc_actor_critic::ActivationCache;
use pc_rl_core::linalg::cpu::CpuLinAlg;

let cache: ActivationCache<CpuLinAlg> = ActivationCache::new(2);
assert_eq!(cache.batch_size(), 0);
assert_eq!(cache.num_layers(), 2);

Implementations§

Source§

impl<L: LinAlg> ActivationCache<L>

Source

pub fn new(num_layers: usize) -> Self

Creates a new empty cache with the given number of hidden layers.

§Arguments
  • num_layers - Number of hidden layers to track.
Source

pub fn batch_size(&self) -> usize

Returns the number of samples recorded so far.

Source

pub fn num_layers(&self) -> usize

Returns the number of hidden layers in the cache.

Source

pub fn record(&mut self, hidden_states: &[L::Vector])

Records hidden layer activations from a single inference.

§Arguments
  • hidden_states - Per-layer activations from InferResult::hidden_states.
Source

pub fn layer(&self, layer_idx: usize) -> &[L::Vector]

Returns the recorded activations for a given layer.

§Arguments
  • layer_idx - Index of the hidden layer.

Trait Implementations§

Source§

impl<L: Clone + LinAlg> Clone for ActivationCache<L>
where L::Vector: Clone,

Source§

fn clone(&self) -> ActivationCache<L>

Returns a duplicate 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<L: Debug + LinAlg> Debug for ActivationCache<L>
where L::Vector: Debug,

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<L> Freeze for ActivationCache<L>

§

impl<L> RefUnwindSafe for ActivationCache<L>
where <L as LinAlg>::Vector: RefUnwindSafe,

§

impl<L> Send for ActivationCache<L>

§

impl<L> Sync for ActivationCache<L>

§

impl<L> Unpin for ActivationCache<L>
where <L as LinAlg>::Vector: Unpin,

§

impl<L> UnsafeUnpin for ActivationCache<L>

§

impl<L> UnwindSafe for ActivationCache<L>
where <L as LinAlg>::Vector: 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§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
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> ToOwned for T
where T: Clone,

Source§

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