Skip to content

Commit 1856518

Browse files
[oneMath][BLAS] Deprecate 'gemmt' and rename it to 'gemmtr' (#667)
1 parent e80d8b8 commit 1856518

File tree

5 files changed

+474
-2
lines changed

5 files changed

+474
-2
lines changed

source/elements/oneMath/source/domains/blas/blas-level-3-routines.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

source/elements/oneMath/source/domains/blas/blas-like-extensions.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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

source/elements/oneMath/source/domains/blas/gemmt.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
gemmt
88
=====
99

10+
.. warning:: gemmt has been deprecated. Use level 3 :ref:`onemath_blas_gemmtr` instead.
11+
1012
Computes a matrix-matrix product with general matrices, but updates
1113
only the upper or lower triangular part of the result matrix.
1214

0 commit comments

Comments
 (0)