pub enum TensorParallelMsg<P: ShardProtocol> {
Step {
input: Vec<f32>,
reply: Sender<Result<(Vec<f32>, StepStats), GpuError>>,
},
// some variants omitted
}Variants§
Auto Trait Implementations§
impl<P> Freeze for TensorParallelMsg<P>
impl<P> !RefUnwindSafe for TensorParallelMsg<P>
impl<P> Send for TensorParallelMsg<P>
impl<P> Sync for TensorParallelMsg<P>
impl<P> Unpin for TensorParallelMsg<P>
impl<P> UnsafeUnpin for TensorParallelMsg<P>
impl<P> !UnwindSafe for TensorParallelMsg<P>
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