Skip to content

Commit

Permalink
Merge pull request #458 from nforro/master
Browse files Browse the repository at this point in the history
Fix macro used in LAPACKE_zgesvdq
  • Loading branch information
langou authored Oct 22, 2020
2 parents c3a0b79 + 3c7d0f0 commit 4fbb4f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LAPACKE/src/lapacke_zgesvdq.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ lapack_int LAPACKE_zgesvdq( int matrix_layout, char joba, char jobp,
goto exit_level_0;
}
liwork = iwork_query;
lcwork = LAPACK_C2INT(cwork_query);
lcwork = LAPACK_Z2INT(cwork_query);
lrwork = (lapack_int)rwork_query;
/* Allocate memory for work arrays */
iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * liwork );
Expand Down

0 comments on commit 4fbb4f8

Please sign in to comment.