fix type of work array

This commit is contained in:
Martin Kroeker 2023-07-10 21:09:43 +02:00 committed by GitHub
parent 78414ba35f
commit 10e5135866
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ lapack_int LAPACKE_zgedmdq_work( int matrix_layout, char jobs, char jobz,
lapack_int ldb, lapack_complex_double* v,
lapack_int ldv, lapack_complex_double* s,
lapack_int lds, lapack_complex_double* zwork,
lapack_int lzwork, lapack_complex_double* work,
lapack_int lzwork, double* work,
lapack_int lwork, lapack_int* iwork,
lapack_int liwork )
{