Skip to content

Windows build fix #760

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

Merged
merged 2 commits into from
Nov 18, 2022
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