Browse Source

fix allocation type of work array

pull/4134/head
Martin Kroeker GitHub 2 years ago
parent
commit
a2b4f824f6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lapack-netlib/LAPACKE/src/lapacke_cgedmd.c

+ 1
- 1
lapack-netlib/LAPACKE/src/lapacke_cgedmd.c View File

@@ -51,7 +51,7 @@ lapack_int LAPACKE_cgedmd( int matrix_layout, char jobs, char jobz, char jobr,
float* work = NULL;
lapack_int* iwork = NULL;
lapack_complex_float zwork_query;
lapack_complex_float work_query;
float work_query;
lapack_int iwork_query;
if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
LAPACKE_xerbla( "LAPACKE_cgedmd", -1 );


Loading…
Cancel
Save