pub struct SyrkRequest<T: SyrkSupported> {
pub uplo: cublasFillMode_t,
pub trans: cublasOperation_t,
pub n: i32,
pub k: i32,
pub alpha: T,
pub a: GpuRef<T>,
pub lda: i32,
pub beta: T,
pub c: GpuRef<T>,
pub ldc: i32,
pub reply: Sender<Result<(), GpuError>>,
}Expand description
C := α·op(A)·op(A)^T + β·C. op is N or T. Updates either
the upper or lower triangle of C.
Fields§
§uplo: cublasFillMode_t§trans: cublasOperation_t§n: i32§k: i32§alpha: T§a: GpuRef<T>§lda: i32§beta: T§c: GpuRef<T>§ldc: i32§reply: Sender<Result<(), GpuError>>Trait Implementations§
Source§impl BlasL3Dispatch for SyrkRequest<f32>
impl BlasL3Dispatch for SyrkRequest<f32>
Source§impl BlasL3Dispatch for SyrkRequest<f64>
impl BlasL3Dispatch for SyrkRequest<f64>
Auto Trait Implementations§
impl<T> Freeze for SyrkRequest<T>where
T: Freeze,
impl<T> !RefUnwindSafe for SyrkRequest<T>
impl<T> Send for SyrkRequest<T>
impl<T> Sync for SyrkRequest<T>
impl<T> Unpin for SyrkRequest<T>where
T: Unpin,
impl<T> UnsafeUnpin for SyrkRequest<T>where
T: UnsafeUnpin,
impl<T> !UnwindSafe for SyrkRequest<T>
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