File tree Expand file tree Collapse file tree 5 files changed +474
-2
lines changed
elements/oneMath/source/domains/blas Expand file tree Collapse file tree 5 files changed +474
-2
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,9 @@ BLAS Level 3 Routines
2424 - Description
2525 * - :ref: `onemath_blas_gemm `
2626 - Computes a matrix-matrix product with general matrices.
27+ * - :ref: `onemath_blas_gemmtr `
28+ - Computes a matrix-matrix product with general matrices, but updates
29+ only the upper or lower triangular part of the result matrix.
2730 * - :ref: `onemath_blas_hemm `
2831 - Computes a matrix-matrix product where one input matrix is Hermitian and one is general.
2932 * - :ref: `onemath_blas_herk `
@@ -47,6 +50,7 @@ BLAS Level 3 Routines
4750 :hidden:
4851
4952 gemm
53+ gemmtr
5054 hemm
5155 herk
5256 her2k
Original file line number Diff line number Diff line change @@ -32,8 +32,10 @@ BLAS-like Extensions
3232 - Computes groups of matrix-matrix products with general matrices.
3333 * - :ref: `onemath_blas_trsm_batch `
3434 - Solves a triangular matrix equation for a group of matrices.
35- * - :ref: `onemath_blas_gemmt `
36- - Computes a matrix-matrix product with general matrices, but updates
35+ * - :ref: `onemath_blas_gemmt ` (deprecated)
36+ - **gemmt has been deprecated. Use level 3 ** :ref: `onemath_blas_gemmtr ` **instead. **
37+
38+ Computes a matrix-matrix product with general matrices, but updates
3739 only the upper or lower triangular part of the result matrix.
3840 * - :ref: `onemath_blas_gemm_bias `
3941 - Computes a matrix-matrix product using general integer matrices with bias
Original file line number Diff line number Diff line change 77gemmt
88=====
99
10+ .. warning :: gemmt has been deprecated. Use level 3 :ref:`onemath_blas_gemmtr` instead.
11+
1012Computes a matrix-matrix product with general matrices, but updates
1113only the upper or lower triangular part of the result matrix.
1214
You can’t perform that action at this time.
0 commit comments