Fix data type of work array in zgesvdq prototype
authorMartin Kroeker <martin@ruby.chemie.uni-freiburg.de>
Wed, 2 Sep 2020 21:44:44 +0000 (23:44 +0200)
committerGitHub <noreply@github.com>
Wed, 2 Sep 2020 21:44:44 +0000 (23:44 +0200)
lapack-netlib/LAPACKE/include/lapack.h

index 4f48b7c..c045892 100644 (file)
@@ -2513,7 +2513,7 @@ void LAPACK_zgesvdq(
     lapack_complex_double* U, lapack_int const* ldu,
     lapack_complex_double* V, lapack_int const* ldv, lapack_int* numrank,
     lapack_int* iwork, lapack_int const* liwork,
-    lapack_complex_float* cwork, lapack_int* lcwork,
+    lapack_complex_double* cwork, lapack_int* lcwork,
     double* rwork, lapack_int const* lrwork,
     lapack_int* info );