pub struct PrefillCapture {
pub layer_wide: Vec<Vec<f32>>,
pub exit_mixed: Vec<f32>,
}Expand description
Per-layer parity capture from a prefill — mirrors the transformers hidden-goldens
hook points (make-goldens.py): decoder-layer outputs on the WIDE stream and the
exit hyper_connection_mixer output.
Fields§
§layer_wide: Vec<Vec<f32>>One entry per trunk layer: post-layer wide rows, token-major [t, streams*hidden].
exit_mixed: Vec<f32>Exit mixer output [t, hidden].
Auto Trait Implementations§
impl Freeze for PrefillCapture
impl RefUnwindSafe for PrefillCapture
impl Send for PrefillCapture
impl Sync for PrefillCapture
impl Unpin for PrefillCapture
impl UnsafeUnpin for PrefillCapture
impl UnwindSafe for PrefillCapture
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