Merge pull request #3840 from martin-frbg/lapack760

Fix typo in EIG tests and spurious return in lapacke_?tz_trans utility (Reference-LAPACK PR760)
This commit is contained in:
Martin Kroeker 2022-11-23 19:16:25 +01:00 committed by GitHub
commit bf0e8d67b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 14 additions and 14 deletions

View File

@ -147,7 +147,7 @@ void LAPACKE_ctz_trans( int matrix_layout, char direct, char uplo,
} }
/* Copy & transpose triangular part */ /* Copy & transpose triangular part */
return LAPACKE_ctr_trans( matrix_layout, uplo, diag, tri_n, LAPACKE_ctr_trans( matrix_layout, uplo, diag, tri_n,
&in[tri_in_offset], ldin, &in[tri_in_offset], ldin,
&out[tri_out_offset], ldout ); &out[tri_out_offset], ldout );
} }

View File

@ -147,7 +147,7 @@ void LAPACKE_dtz_trans( int matrix_layout, char direct, char uplo,
} }
/* Copy & transpose triangular part */ /* Copy & transpose triangular part */
return LAPACKE_dtr_trans( matrix_layout, uplo, diag, tri_n, LAPACKE_dtr_trans( matrix_layout, uplo, diag, tri_n,
&in[tri_in_offset], ldin, &in[tri_in_offset], ldin,
&out[tri_out_offset], ldout ); &out[tri_out_offset], ldout );
} }

View File

@ -147,7 +147,7 @@ void LAPACKE_stz_trans( int matrix_layout, char direct, char uplo,
} }
/* Copy & transpose triangular part */ /* Copy & transpose triangular part */
return LAPACKE_str_trans( matrix_layout, uplo, diag, tri_n, LAPACKE_str_trans( matrix_layout, uplo, diag, tri_n,
&in[tri_in_offset], ldin, &in[tri_in_offset], ldin,
&out[tri_out_offset], ldout ); &out[tri_out_offset], ldout );
} }

View File

@ -147,7 +147,7 @@ void LAPACKE_ztz_trans( int matrix_layout, char direct, char uplo,
} }
/* Copy & transpose triangular part */ /* Copy & transpose triangular part */
return LAPACKE_ztr_trans( matrix_layout, uplo, diag, tri_n, LAPACKE_ztr_trans( matrix_layout, uplo, diag, tri_n,
&in[tri_in_offset], ldin, &in[tri_in_offset], ldin,
&out[tri_out_offset], ldout ); &out[tri_out_offset], ldout );
} }

View File

@ -99,7 +99,7 @@
* .. * ..
* .. External Subroutines .. * .. External Subroutines ..
EXTERNAL CHKXER, DGEES, DGEESX, DGEEV, DGEEVX, DGEJSV, EXTERNAL CHKXER, DGEES, DGEESX, DGEEV, DGEEVX, DGEJSV,
$ DGESDD, DGESVD, DGESVDX, DGESVQ $ DGESDD, DGESVD, DGESVDX, DGESVDQ
* .. * ..
* .. External Functions .. * .. External Functions ..
LOGICAL DSLECT, LSAMEN LOGICAL DSLECT, LSAMEN

View File

@ -100,7 +100,7 @@
* .. * ..
* .. External Subroutines .. * .. External Subroutines ..
EXTERNAL CHKXER, ZGEES, ZGEESX, ZGEEV, ZGEEVX, ZGESVJ, EXTERNAL CHKXER, ZGEES, ZGEESX, ZGEEV, ZGEEVX, ZGESVJ,
$ ZGESDD, ZGESVD, ZGESVDX, ZGESVQ $ ZGESDD, ZGESVD, ZGESVDX, ZGESVDQ
* .. * ..
* .. External Functions .. * .. External Functions ..
LOGICAL LSAMEN, ZSLECT LOGICAL LSAMEN, ZSLECT