Expand description
Typed L3 ops other than gemm: geam (matrix add/scale), syrk (symmetric rank-k update), trsm (triangular solve).
Each of these drops to the local sys-level wrappers in
crate::sys::cublas because cudarc 0.19 has no safe trait for
them.
Structs§
- Geam
Request C = α·op(A) + β·op(B).- Syrk
Request C := α·op(A)·op(A)^T + β·C.opisNorT. Updates either the upper or lower triangle ofC.- Trsm
Request - Triangular solve:
op(A) · X = α·B(orX · op(A) = α·B). Solution is written in-place overB.