Add const qualifiers
This commit is contained in:
parent
3a30c12019
commit
254774f5a6
|
@ -4768,7 +4768,7 @@ void LAPACK_chegst(
|
|||
lapack_int const* itype, char const* uplo,
|
||||
lapack_int const* n,
|
||||
lapack_complex_float* A, lapack_int const* lda,
|
||||
lapack_complex_float* B, lapack_int const* ldb,
|
||||
const lapack_complex_float* B, lapack_int const* ldb,
|
||||
lapack_int* info );
|
||||
|
||||
#define LAPACK_zhegst LAPACK_GLOBAL(zhegst,ZHEGST)
|
||||
|
@ -4776,7 +4776,7 @@ void LAPACK_zhegst(
|
|||
lapack_int const* itype, char const* uplo,
|
||||
lapack_int const* n,
|
||||
lapack_complex_double* A, lapack_int const* lda,
|
||||
lapack_complex_double* B, lapack_int const* ldb,
|
||||
const lapack_complex_double* B, lapack_int const* ldb,
|
||||
lapack_int* info );
|
||||
|
||||
#define LAPACK_chegv LAPACK_GLOBAL(chegv,CHEGV)
|
||||
|
@ -11556,7 +11556,7 @@ void LAPACK_zsytrs(
|
|||
void LAPACK_csytrs2(
|
||||
char const* uplo,
|
||||
lapack_int const* n, lapack_int const* nrhs,
|
||||
lapack_complex_float* A, lapack_int const* lda, lapack_int const* ipiv,
|
||||
const lapack_complex_float* A, lapack_int const* lda, lapack_int const* ipiv,
|
||||
lapack_complex_float* B, lapack_int const* ldb,
|
||||
lapack_complex_float* work,
|
||||
lapack_int* info );
|
||||
|
@ -11565,7 +11565,7 @@ void LAPACK_csytrs2(
|
|||
void LAPACK_dsytrs2(
|
||||
char const* uplo,
|
||||
lapack_int const* n, lapack_int const* nrhs,
|
||||
double* A, lapack_int const* lda, lapack_int const* ipiv,
|
||||
const double* A, lapack_int const* lda, lapack_int const* ipiv,
|
||||
double* B, lapack_int const* ldb,
|
||||
double* work,
|
||||
lapack_int* info );
|
||||
|
@ -11574,7 +11574,7 @@ void LAPACK_dsytrs2(
|
|||
void LAPACK_ssytrs2(
|
||||
char const* uplo,
|
||||
lapack_int const* n, lapack_int const* nrhs,
|
||||
float* A, lapack_int const* lda, lapack_int const* ipiv,
|
||||
const float* A, lapack_int const* lda, lapack_int const* ipiv,
|
||||
float* B, lapack_int const* ldb,
|
||||
float* work,
|
||||
lapack_int* info );
|
||||
|
@ -11583,7 +11583,7 @@ void LAPACK_ssytrs2(
|
|||
void LAPACK_zsytrs2(
|
||||
char const* uplo,
|
||||
lapack_int const* n, lapack_int const* nrhs,
|
||||
lapack_complex_double* A, lapack_int const* lda, lapack_int const* ipiv,
|
||||
const lapack_complex_double* A, lapack_int const* lda, lapack_int const* ipiv,
|
||||
lapack_complex_double* B, lapack_int const* ldb,
|
||||
lapack_complex_double* work,
|
||||
lapack_int* info );
|
||||
|
|
|
@ -1867,11 +1867,11 @@ lapack_int LAPACKE_zheevx( int matrix_layout, char jobz, char range, char uplo,
|
|||
|
||||
lapack_int LAPACKE_chegst( int matrix_layout, lapack_int itype, char uplo,
|
||||
lapack_int n, lapack_complex_float* a,
|
||||
lapack_int lda, lapack_complex_float* b,
|
||||
lapack_int lda, const lapack_complex_float* b,
|
||||
lapack_int ldb );
|
||||
lapack_int LAPACKE_zhegst( int matrix_layout, lapack_int itype, char uplo,
|
||||
lapack_int n, lapack_complex_double* a,
|
||||
lapack_int lda, lapack_complex_double* b,
|
||||
lapack_int lda, const lapack_complex_double* b,
|
||||
lapack_int ldb );
|
||||
|
||||
lapack_int LAPACKE_chegv( int matrix_layout, lapack_int itype, char jobz,
|
||||
|
@ -6932,11 +6932,11 @@ lapack_int LAPACKE_zheevx_work( int matrix_layout, char jobz, char range,
|
|||
|
||||
lapack_int LAPACKE_chegst_work( int matrix_layout, lapack_int itype, char uplo,
|
||||
lapack_int n, lapack_complex_float* a,
|
||||
lapack_int lda, lapack_complex_float* b,
|
||||
lapack_int lda, const lapack_complex_float* b,
|
||||
lapack_int ldb );
|
||||
lapack_int LAPACKE_zhegst_work( int matrix_layout, lapack_int itype, char uplo,
|
||||
lapack_int n, lapack_complex_double* a,
|
||||
lapack_int lda, lapack_complex_double* b,
|
||||
lapack_int lda, const lapack_complex_double* b,
|
||||
lapack_int ldb );
|
||||
|
||||
lapack_int LAPACKE_chegv_work( int matrix_layout, lapack_int itype, char jobz,
|
||||
|
@ -10553,11 +10553,11 @@ lapack_int LAPACKE_csytri2x_work( int matrix_layout, char uplo, lapack_int n,
|
|||
const lapack_int* ipiv,
|
||||
lapack_complex_float* work, lapack_int nb );
|
||||
lapack_int LAPACKE_csytrs2( int matrix_layout, char uplo, lapack_int n,
|
||||
lapack_int nrhs, lapack_complex_float* a,
|
||||
lapack_int nrhs, const lapack_complex_float* a,
|
||||
lapack_int lda, const lapack_int* ipiv,
|
||||
lapack_complex_float* b, lapack_int ldb );
|
||||
lapack_int LAPACKE_csytrs2_work( int matrix_layout, char uplo, lapack_int n,
|
||||
lapack_int nrhs, lapack_complex_float* a,
|
||||
lapack_int nrhs, const lapack_complex_float* a,
|
||||
lapack_int lda, const lapack_int* ipiv,
|
||||
lapack_complex_float* b, lapack_int ldb,
|
||||
lapack_complex_float* work );
|
||||
|
@ -10718,10 +10718,10 @@ lapack_int LAPACKE_dsytri2x_work( int matrix_layout, char uplo, lapack_int n,
|
|||
const lapack_int* ipiv, double* work,
|
||||
lapack_int nb );
|
||||
lapack_int LAPACKE_dsytrs2( int matrix_layout, char uplo, lapack_int n,
|
||||
lapack_int nrhs, double* a, lapack_int lda,
|
||||
lapack_int nrhs, const double* a, lapack_int lda,
|
||||
const lapack_int* ipiv, double* b, lapack_int ldb );
|
||||
lapack_int LAPACKE_dsytrs2_work( int matrix_layout, char uplo, lapack_int n,
|
||||
lapack_int nrhs, double* a,
|
||||
lapack_int nrhs, const double* a,
|
||||
lapack_int lda, const lapack_int* ipiv,
|
||||
double* b, lapack_int ldb, double* work );
|
||||
lapack_int LAPACKE_sbbcsd( int matrix_layout, char jobu1, char jobu2,
|
||||
|
@ -10813,10 +10813,10 @@ lapack_int LAPACKE_ssytri2x_work( int matrix_layout, char uplo, lapack_int n,
|
|||
const lapack_int* ipiv, float* work,
|
||||
lapack_int nb );
|
||||
lapack_int LAPACKE_ssytrs2( int matrix_layout, char uplo, lapack_int n,
|
||||
lapack_int nrhs, float* a, lapack_int lda,
|
||||
lapack_int nrhs, const float* a, lapack_int lda,
|
||||
const lapack_int* ipiv, float* b, lapack_int ldb );
|
||||
lapack_int LAPACKE_ssytrs2_work( int matrix_layout, char uplo, lapack_int n,
|
||||
lapack_int nrhs, float* a,
|
||||
lapack_int nrhs, const float* a,
|
||||
lapack_int lda, const lapack_int* ipiv,
|
||||
float* b, lapack_int ldb, float* work );
|
||||
lapack_int LAPACKE_zbbcsd( int matrix_layout, char jobu1, char jobu2,
|
||||
|
@ -10898,11 +10898,11 @@ lapack_int LAPACKE_zsytri2x_work( int matrix_layout, char uplo, lapack_int n,
|
|||
const lapack_int* ipiv,
|
||||
lapack_complex_double* work, lapack_int nb );
|
||||
lapack_int LAPACKE_zsytrs2( int matrix_layout, char uplo, lapack_int n,
|
||||
lapack_int nrhs, lapack_complex_double* a,
|
||||
lapack_int nrhs, const lapack_complex_double* a,
|
||||
lapack_int lda, const lapack_int* ipiv,
|
||||
lapack_complex_double* b, lapack_int ldb );
|
||||
lapack_int LAPACKE_zsytrs2_work( int matrix_layout, char uplo, lapack_int n,
|
||||
lapack_int nrhs, lapack_complex_double* a,
|
||||
lapack_int nrhs, const lapack_complex_double* a,
|
||||
lapack_int lda, const lapack_int* ipiv,
|
||||
lapack_complex_double* b, lapack_int ldb,
|
||||
lapack_complex_double* work );
|
||||
|
|
Loading…
Reference in New Issue