Skip to content

Commit 76ed3b3

Browse files
authored
Merge branch 'develop' into feature/container-blas-と-lapack
2 parents 0d3f2d0 + 0857ee1 commit 76ed3b3

File tree

1 file changed

+2
-2
lines changed
  • source/source_base/module_container/base/third_party

1 file changed

+2
-2
lines changed

source/source_base/module_container/base/third_party/lapack.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ void ssyevx_(const char* jobz, const char* range, const char* uplo, const int* n
110110
float* a, const int* lda,
111111
const float* vl, const float* vu, const int* il, const int* iu,
112112
const float* abstol, int* m, float* w, float* z, const int* ldz,
113-
float* work, const int* lwork, float* rwork, int* iwork, int* ifail, int* info);
113+
float* work, const int* lwork, int* iwork, int* ifail, int* info);
114114

115115
void dsyevx_(const char* jobz, const char* range, const char* uplo, const int* n,
116116
double* a, const int* lda,
@@ -356,7 +356,7 @@ void heevx(const char jobz, const char range, const char uplo, const int n,
356356
ssyevx_(&jobz, &range, &uplo, &n,
357357
a, &lda, &vl, &vu, &il, &iu,
358358
&abstol, &m, w, z, &ldz,
359-
work, &lwork, rwork, iwork, ifail, &info);
359+
work, &lwork, iwork, ifail, &info);
360360
}
361361
// wrap function of fortran lapack routine zheevx.
362362
static inline

0 commit comments

Comments
 (0)