pub struct TokenGraph { /* private fields */ }Implementations§
Source§impl TokenGraph
impl TokenGraph
Sourcepub fn retarget_bucket(&mut self, bucket: usize) -> Result<(), Box<dyn Error>>
pub fn retarget_bucket(&mut self, bucket: usize) -> Result<(), Box<dyn Error>>
Retarget every fa site to a new bucket via exec param updates (M1 path) — replaces the
per-bucket whole-graph rebuild (~55ms) with ~450 node updates (~1ms). Per site the
bucket caps at the layer window; nsp/ski/gridDimY and the partial-pool memset widths
move together so the exec always matches what a fresh build at bucket would bake.
pub fn launch(&self, e: &Engine) -> Result<(), Box<dyn Error>>
Trait Implementations§
Source§impl Drop for TokenGraph
impl Drop for TokenGraph
impl Send for TokenGraph
Auto Trait Implementations§
impl !Sync for TokenGraph
impl Freeze for TokenGraph
impl RefUnwindSafe for TokenGraph
impl Unpin for TokenGraph
impl UnsafeUnpin for TokenGraph
impl UnwindSafe for TokenGraph
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