Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement xGEMMTR and cblas_xGEMMTR #887

Merged
merged 23 commits into from
Jun 28, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update documentation of xGEMMT
  • Loading branch information
Martin Köhler committed Jun 24, 2024
commit b25cf2c8d4aae92748b0694d179b9b75c101648f
4 changes: 2 additions & 2 deletions BLAS/SRC/cgemmt.f
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
*> alpha and beta are scalars, and A, B and C are matrices, with op( A )
*> an n by k matrix, op( B ) a k by n matrix and C an n by n matrix.
*> Thereby, the routine only accesses and updates the upper or lower
*> triangular part of the result matrix C. This behaviour can be used,
*> the resulting matrix C is known to be symmetric.
*> triangular part of the result matrix C. This behaviour can be used if
*> the resulting matrix C is known to be Hermitian or symmetric.
*> \endverbatim
*
* Arguments:
Expand Down
2 changes: 1 addition & 1 deletion BLAS/SRC/dgemmt.f
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
*> alpha and beta are scalars, and A, B and C are matrices, with op( A )
*> an n by k matrix, op( B ) a k by n matrix and C an n by n matrix.
*> Thereby, the routine only accesses and updates the upper or lower
*> triangular part of the result matrix C. This behaviour can be used,
*> triangular part of the result matrix C. This behaviour can be used if
*> the resulting matrix C is known to be symmetric.
*> \endverbatim
*
Expand Down
2 changes: 1 addition & 1 deletion BLAS/SRC/sgemmt.f
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
*> alpha and beta are scalars, and A, B and C are matrices, with op( A )
*> an n by k matrix, op( B ) a k by n matrix and C an n by n matrix.
*> Thereby, the routine only accesses and updates the upper or lower
*> triangular part of the result matrix C. This behaviour can be used,
*> triangular part of the result matrix C. This behaviour can be used if
*> the resulting matrix C is known to be symmetric.
*> \endverbatim
*
Expand Down
4 changes: 2 additions & 2 deletions BLAS/SRC/zgemmt.f
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
*> alpha and beta are scalars, and A, B and C are matrices, with op( A )
*> an n by k matrix, op( B ) a k by n matrix and C an n by n matrix.
*> Thereby, the routine only accesses and updates the upper or lower
*> triangular part of the result matrix C. This behaviour can be used,
*> the resulting matrix C is known to be symmetric.
*> triangular part of the result matrix C. This behaviour can be used if
*> the resulting matrix C is known to be Hermitian or symmetric.
*> \endverbatim
*
* Arguments:
Expand Down