Skip to content

Commit c497f0f

Browse files
committed
Adding *trevc3 routines to CMakefile.txt file + fix lapacke.h
1 parent b80f3e4 commit c497f0f

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

LAPACKE/include/lapacke.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -17084,7 +17084,7 @@ void LAPACK_csyconv( char* uplo, char* way,
1708417084
lapack_int* lda, const lapack_int* ipiv,
1708517085
lapack_complex_float* e , lapack_int *info );
1708617086
void LAPACK_csyswapr( char* uplo, lapack_int* n,
17087-
lapack_complex_float* a, lapack_int lda,
17087+
lapack_complex_float* a, lapack_int* lda,
1708817088
lapack_int* i1, lapack_int* i2 );
1708917089
void LAPACK_csytri2( char* uplo, lapack_int* n,
1709017090
lapack_complex_float* a, lapack_int* lda,
@@ -17178,7 +17178,7 @@ void LAPACK_dsyconv( char* uplo, char* way,
1717817178
lapack_int* n, double* a, lapack_int* lda,
1717917179
const lapack_int* ipiv, double* e , lapack_int *info );
1718017180
void LAPACK_dsyswapr( char* uplo, lapack_int* n, double* a,
17181-
lapack_int lda, lapack_int* i1, lapack_int* i2 );
17181+
lapack_int* lda, lapack_int* i1, lapack_int* i2 );
1718217182
void LAPACK_dsytri2( char* uplo, lapack_int* n,
1718317183
double* a, lapack_int* lda,
1718417184
const lapack_int* ipiv,
@@ -17232,7 +17232,7 @@ void LAPACK_ssyconv( char* uplo, char* way,
1723217232
lapack_int* n, float* a, lapack_int* lda,
1723317233
const lapack_int* ipiv, float* e , lapack_int *info );
1723417234
void LAPACK_ssyswapr( char* uplo, lapack_int* n, float* a,
17235-
lapack_int lda, lapack_int* i1, lapack_int* i2 );
17235+
lapack_int* lda, lapack_int* i1, lapack_int* i2 );
1723617236
void LAPACK_ssytri2( char* uplo, lapack_int* n,
1723717237
float* a, lapack_int* lda,
1723817238
const lapack_int* ipiv,
@@ -17278,7 +17278,7 @@ void LAPACK_zsyconv( char* uplo, char* way,
1727817278
lapack_int* lda, const lapack_int* ipiv,
1727917279
lapack_complex_double* e , lapack_int *info );
1728017280
void LAPACK_zsyswapr( char* uplo, lapack_int* n, lapack_complex_double* a,
17281-
lapack_int lda, lapack_int* i1,
17281+
lapack_int* lda, lapack_int* i1,
1728217282
lapack_int* i2 );
1728317283
void LAPACK_zsytri2( char* uplo, lapack_int* n,
1728417284
lapack_complex_double* a, lapack_int* lda,

SRC/CMakeLists.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ set(SLASRC
141141
stbrfs.f stbtrs.f stgevc.f stgex2.f stgexc.f stgsen.f
142142
stgsja.f stgsna.f stgsy2.f stgsyl.f stpcon.f stprfs.f stptri.f
143143
stptrs.f
144-
strcon.f strevc.f strexc.f strrfs.f strsen.f strsna.f strsyl.f
144+
strcon.f strevc.f strevc3.f strexc.f strrfs.f strsen.f strsna.f strsyl.f
145145
strti2.f strtri.f strtrs.f stzrzf.f sstemr.f
146146
slansf.f spftrf.f spftri.f spftrs.f ssfrk.f stfsm.f stftri.f stfttp.f
147147
stfttr.f stpttf.f stpttr.f strttf.f strttp.f
@@ -221,7 +221,7 @@ set(CLASRC
221221
ctbcon.f ctbrfs.f ctbtrs.f ctgevc.f ctgex2.f
222222
ctgexc.f ctgsen.f ctgsja.f ctgsna.f ctgsy2.f ctgsyl.f ctpcon.f
223223
ctprfs.f ctptri.f
224-
ctptrs.f ctrcon.f ctrevc.f ctrexc.f ctrrfs.f ctrsen.f ctrsna.f
224+
ctptrs.f ctrcon.f ctrevc.f ctrevc3.f ctrexc.f ctrrfs.f ctrsen.f ctrsna.f
225225
ctrsyl.f ctrti2.f ctrtri.f ctrtrs.f ctzrzf.f cung2l.f cung2r.f
226226
cungbr.f cunghr.f cungl2.f cunglq.f cungql.f cungqr.f cungr2.f
227227
cungrq.f cungtr.f cunm2l.f cunm2r.f cunmbr.f cunmhr.f cunml2.f cunm22.f
@@ -302,7 +302,7 @@ set(DLASRC
302302
dtbrfs.f dtbtrs.f dtgevc.f dtgex2.f dtgexc.f dtgsen.f
303303
dtgsja.f dtgsna.f dtgsy2.f dtgsyl.f dtpcon.f dtprfs.f dtptri.f
304304
dtptrs.f
305-
dtrcon.f dtrevc.f dtrexc.f dtrrfs.f dtrsen.f dtrsna.f dtrsyl.f
305+
dtrcon.f dtrevc.f dtrevc3.f dtrexc.f dtrrfs.f dtrsen.f dtrsna.f dtrsyl.f
306306
dtrti2.f dtrtri.f dtrtrs.f dtzrzf.f dstemr.f
307307
dsgesv.f dsposv.f dlag2s.f slag2d.f dlat2s.f
308308
dlansf.f dpftrf.f dpftri.f dpftrs.f dsfrk.f dtfsm.f dtftri.f dtfttp.f
@@ -383,7 +383,7 @@ set(ZLASRC
383383
ztbcon.f ztbrfs.f ztbtrs.f ztgevc.f ztgex2.f
384384
ztgexc.f ztgsen.f ztgsja.f ztgsna.f ztgsy2.f ztgsyl.f ztpcon.f
385385
ztprfs.f ztptri.f
386-
ztptrs.f ztrcon.f ztrevc.f ztrexc.f ztrrfs.f ztrsen.f ztrsna.f
386+
ztptrs.f ztrcon.f ztrevc.f ztrevc3.f ztrexc.f ztrrfs.f ztrsen.f ztrsna.f
387387
ztrsyl.f ztrti2.f ztrtri.f ztrtrs.f ztzrzf.f zung2l.f
388388
zung2r.f zungbr.f zunghr.f zungl2.f zunglq.f zungql.f zungqr.f zungr2.f
389389
zungrq.f zungtr.f zunm2l.f zunm2r.f zunmbr.f zunmhr.f zunml2.f zunm22.f

0 commit comments

Comments
 (0)