pub struct BlasLtDispatchCtx<'a> {
pub blas_lt: Arc<CudaBlasLT>,
pub stream: &'a Arc<CudaStream>,
pub completion: &'a Arc<dyn CompletionStrategy>,
pub workspace: &'a WorkspacePool,
pub heuristic: HeuristicCacheRef,
pub sm_arch: u32,
}Expand description
Per-call context handed to a BlasLtDispatch::dispatch impl.
Fields§
§blas_lt: Arc<CudaBlasLT>§stream: &'a Arc<CudaStream>§completion: &'a Arc<dyn CompletionStrategy>§workspace: &'a WorkspacePool§heuristic: HeuristicCacheRef§sm_arch: u32Auto Trait Implementations§
impl<'a> Freeze for BlasLtDispatchCtx<'a>
impl<'a> !RefUnwindSafe for BlasLtDispatchCtx<'a>
impl<'a> Send for BlasLtDispatchCtx<'a>
impl<'a> Sync for BlasLtDispatchCtx<'a>
impl<'a> Unpin for BlasLtDispatchCtx<'a>
impl<'a> UnsafeUnpin for BlasLtDispatchCtx<'a>
impl<'a> !UnwindSafe for BlasLtDispatchCtx<'a>
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