pub struct RefitMsg {
pub plan_key: PlanKey,
pub weights: Vec<u8>,
}Expand description
Reply payload for crate::actor::CutlassMsg::Refit. Replaces a
previously compiled plan’s weight buffer in place without
recompiling the kernel.
Fields§
§plan_key: PlanKey§weights: Vec<u8>Opaque weight bytes; the actor forwards them to the kernel’s allocated workspace via the existing memory actors.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RefitMsg
impl RefUnwindSafe for RefitMsg
impl Send for RefitMsg
impl Sync for RefitMsg
impl Unpin for RefitMsg
impl UnsafeUnpin for RefitMsg
impl UnwindSafe for RefitMsg
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