Skip to content

Commit c31b729

Browse files
authored
Fix data type of work array in zgesvdq prototype
1 parent 0ce2aa3 commit c31b729

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lapack-netlib/LAPACKE/include/lapack.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2513,7 +2513,7 @@ void LAPACK_zgesvdq(
25132513
lapack_complex_double* U, lapack_int const* ldu,
25142514
lapack_complex_double* V, lapack_int const* ldv, lapack_int* numrank,
25152515
lapack_int* iwork, lapack_int const* liwork,
2516-
lapack_complex_float* cwork, lapack_int* lcwork,
2516+
lapack_complex_double* cwork, lapack_int* lcwork,
25172517
double* rwork, lapack_int const* lrwork,
25182518
lapack_int* info );
25192519

0 commit comments

Comments
 (0)