Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions LAPACKE/utils/lapacke_ctz_trans.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ void LAPACKE_ctz_trans( int matrix_layout, char direct, char uplo,
}

/* Copy & transpose triangular part */
return LAPACKE_ctr_trans( matrix_layout, uplo, diag, tri_n,
&in[tri_in_offset], ldin,
&out[tri_out_offset], ldout );
LAPACKE_ctr_trans( matrix_layout, uplo, diag, tri_n,
&in[tri_in_offset], ldin,
&out[tri_out_offset], ldout );
}
6 changes: 3 additions & 3 deletions LAPACKE/utils/lapacke_dtz_trans.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ void LAPACKE_dtz_trans( int matrix_layout, char direct, char uplo,
}

/* Copy & transpose triangular part */
return LAPACKE_dtr_trans( matrix_layout, uplo, diag, tri_n,
&in[tri_in_offset], ldin,
&out[tri_out_offset], ldout );
LAPACKE_dtr_trans( matrix_layout, uplo, diag, tri_n,
&in[tri_in_offset], ldin,
&out[tri_out_offset], ldout );
}
6 changes: 3 additions & 3 deletions LAPACKE/utils/lapacke_stz_trans.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ void LAPACKE_stz_trans( int matrix_layout, char direct, char uplo,
}

/* Copy & transpose triangular part */
return LAPACKE_str_trans( matrix_layout, uplo, diag, tri_n,
&in[tri_in_offset], ldin,
&out[tri_out_offset], ldout );
LAPACKE_str_trans( matrix_layout, uplo, diag, tri_n,
&in[tri_in_offset], ldin,
&out[tri_out_offset], ldout );
}
6 changes: 3 additions & 3 deletions LAPACKE/utils/lapacke_ztz_trans.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ void LAPACKE_ztz_trans( int matrix_layout, char direct, char uplo,
}

/* Copy & transpose triangular part */
return LAPACKE_ztr_trans( matrix_layout, uplo, diag, tri_n,
&in[tri_in_offset], ldin,
&out[tri_out_offset], ldout );
LAPACKE_ztr_trans( matrix_layout, uplo, diag, tri_n,
&in[tri_in_offset], ldin,
&out[tri_out_offset], ldout );
}
2 changes: 1 addition & 1 deletion TESTING/EIG/derred.f
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ SUBROUTINE DERRED( PATH, NUNIT )
* ..
* .. External Subroutines ..
EXTERNAL CHKXER, DGEES, DGEESX, DGEEV, DGEEVX, DGEJSV,
$ DGESDD, DGESVD, DGESVDX, DGESVQ
$ DGESDD, DGESVD, DGESVDX, DGESVDQ
* ..
* .. External Functions ..
LOGICAL DSLECT, LSAMEN
Expand Down
2 changes: 1 addition & 1 deletion TESTING/EIG/zerred.f
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ SUBROUTINE ZERRED( PATH, NUNIT )
* ..
* .. External Subroutines ..
EXTERNAL CHKXER, ZGEES, ZGEESX, ZGEEV, ZGEEVX, ZGESVJ,
$ ZGESDD, ZGESVD, ZGESVDX, ZGESVQ
$ ZGESDD, ZGESVD, ZGESVDX, ZGESVDQ
* ..
* .. External Functions ..
LOGICAL LSAMEN, ZSLECT
Expand Down