-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
lapack.h
13819 lines (12478 loc) · 453 KB
/
lapack.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#ifndef LAPACK_H
#define LAPACK_H
/*
* Turn on HAVE_LAPACK_CONFIG_H to redefine C-LAPACK datatypes
*/
#ifdef HAVE_LAPACK_CONFIG_H
#include "lapacke_config.h"
#endif
#include "lapacke_mangling.h"
#include <stdlib.h>
/* Complex types are structures equivalent to the
* Fortran complex types COMPLEX(4) and COMPLEX(8).
*
* One can also redefine the types with his own types
* for example by including in the code definitions like
*
* #define lapack_complex_float std::complex<float>
* #define lapack_complex_double std::complex<double>
*
* or define these types in the command line:
*
* -Dlapack_complex_float="std::complex<float>"
* -Dlapack_complex_double="std::complex<double>"
*/
#ifndef LAPACK_COMPLEX_CUSTOM
/* Complex type (single precision) */
#ifndef lapack_complex_float
#ifndef __cplusplus
#include <complex.h>
#else
#include <complex>
#endif
#define lapack_complex_float float _Complex
#endif
#ifndef lapack_complex_float_real
#define lapack_complex_float_real(z) (creal(z))
#endif
#ifndef lapack_complex_float_imag
#define lapack_complex_float_imag(z) (cimag(z))
#endif
/* Complex type (double precision) */
#ifndef lapack_complex_double
#ifndef __cplusplus
#include <complex.h>
#else
#include <complex>
#endif
#define lapack_complex_double double _Complex
#endif
#ifndef lapack_complex_double_real
#define lapack_complex_double_real(z) (creal(z))
#endif
#ifndef lapack_complex_double_imag
#define lapack_complex_double_imag(z) (cimag(z))
#endif
#endif /* LAPACK_COMPLEX_CUSTOM */
#ifdef __cplusplus
extern "C" {
#endif
/*----------------------------------------------------------------------------*/
#ifndef lapack_int
#define lapack_int int
#endif
#ifndef lapack_logical
#define lapack_logical lapack_int
#endif
/* f2c, hence clapack and MacOS Accelerate, returns double instead of float
* for sdot, slange, clange, etc. */
#if defined(LAPACK_F2C)
typedef double lapack_float_return;
#else
typedef float lapack_float_return;
#endif
/* Callback logical functions of one, two, or three arguments are used
* to select eigenvalues to sort to the top left of the Schur form.
* The value is selected if function returns TRUE (non-zero). */
typedef lapack_logical (*LAPACK_S_SELECT2) ( const float*, const float* );
typedef lapack_logical (*LAPACK_S_SELECT3)
( const float*, const float*, const float* );
typedef lapack_logical (*LAPACK_D_SELECT2) ( const double*, const double* );
typedef lapack_logical (*LAPACK_D_SELECT3)
( const double*, const double*, const double* );
typedef lapack_logical (*LAPACK_C_SELECT1) ( const lapack_complex_float* );
typedef lapack_logical (*LAPACK_C_SELECT2)
( const lapack_complex_float*, const lapack_complex_float* );
typedef lapack_logical (*LAPACK_Z_SELECT1) ( const lapack_complex_double* );
typedef lapack_logical (*LAPACK_Z_SELECT2)
( const lapack_complex_double*, const lapack_complex_double* );
#define LAPACK_lsame LAPACK_GLOBAL(lsame,LSAME)
lapack_logical LAPACK_lsame( char* ca, char* cb,
lapack_int lca, lapack_int lcb );
/*----------------------------------------------------------------------------*/
/* This is in alphabetical order (ignoring leading precision). */
#define LAPACK_cbbcsd LAPACK_GLOBAL(cbbcsd,CBBCSD)
void LAPACK_cbbcsd(
char const* jobu1, char const* jobu2, char const* jobv1t, char const* jobv2t, char const* trans,
lapack_int const* m, lapack_int const* p, lapack_int const* q,
float* theta,
float* phi,
lapack_complex_float* U1, lapack_int const* ldu1,
lapack_complex_float* U2, lapack_int const* ldu2,
lapack_complex_float* V1T, lapack_int const* ldv1t,
lapack_complex_float* V2T, lapack_int const* ldv2t,
float* B11D,
float* B11E,
float* B12D,
float* B12E,
float* B21D,
float* B21E,
float* B22D,
float* B22E,
float* rwork, lapack_int const* lrwork,
lapack_int* info );
#define LAPACK_dbbcsd LAPACK_GLOBAL(dbbcsd,DBBCSD)
void LAPACK_dbbcsd(
char const* jobu1, char const* jobu2, char const* jobv1t, char const* jobv2t, char const* trans,
lapack_int const* m, lapack_int const* p, lapack_int const* q,
double* theta,
double* phi,
double* U1, lapack_int const* ldu1,
double* U2, lapack_int const* ldu2,
double* V1T, lapack_int const* ldv1t,
double* V2T, lapack_int const* ldv2t,
double* B11D,
double* B11E,
double* B12D,
double* B12E,
double* b21d,
double* b21e,
double* b22d,
double* b22e,
double* work, lapack_int const* lwork,
lapack_int* info );
#define LAPACK_sbbcsd LAPACK_GLOBAL(sbbcsd,SBBCSD)
void LAPACK_sbbcsd(
char const* jobu1, char const* jobu2, char const* jobv1t, char const* jobv2t, char const* trans,
lapack_int const* m, lapack_int const* p, lapack_int const* q,
float* theta,
float* phi,
float* U1, lapack_int const* ldu1,
float* U2, lapack_int const* ldu2,
float* V1T, lapack_int const* ldv1t,
float* V2T, lapack_int const* ldv2t,
float* B11D,
float* B11E,
float* B12D,
float* B12E,
float* B21D,
float* B21E,
float* B22D,
float* B22E,
float* work, lapack_int const* lwork,
lapack_int* info );
#define LAPACK_zbbcsd LAPACK_GLOBAL(zbbcsd,ZBBCSD)
void LAPACK_zbbcsd(
char const* jobu1, char const* jobu2, char const* jobv1t, char const* jobv2t, char const* trans,
lapack_int const* m, lapack_int const* p, lapack_int const* q,
double* theta,
double* phi,
lapack_complex_double* U1, lapack_int const* ldu1,
lapack_complex_double* U2, lapack_int const* ldu2,
lapack_complex_double* V1T, lapack_int const* ldv1t,
lapack_complex_double* V2T, lapack_int const* ldv2t,
double* B11D,
double* B11E,
double* B12D,
double* B12E,
double* B21D,
double* B21E,
double* B22D,
double* B22E,
double* rwork, lapack_int const* lrwork,
lapack_int* info );
#define LAPACK_dbdsdc LAPACK_GLOBAL(dbdsdc,DBDSDC)
void LAPACK_dbdsdc(
char const* uplo, char const* compq,
lapack_int const* n,
double* D,
double* E,
double* U, lapack_int const* ldu,
double* VT, lapack_int const* ldvt,
double* Q, lapack_int* IQ,
double* work,
lapack_int* iwork,
lapack_int* info );
#define LAPACK_sbdsdc LAPACK_GLOBAL(sbdsdc,SBDSDC)
void LAPACK_sbdsdc(
char const* uplo, char const* compq,
lapack_int const* n,
float* D,
float* E,
float* U, lapack_int const* ldu,
float* VT, lapack_int const* ldvt,
float* Q, lapack_int* IQ,
float* work,
lapack_int* iwork,
lapack_int* info );
#define LAPACK_cbdsqr LAPACK_GLOBAL(cbdsqr,CBDSQR)
void LAPACK_cbdsqr(
char const* uplo,
lapack_int const* n, lapack_int const* ncvt, lapack_int const* nru, lapack_int const* ncc,
float* D,
float* E,
lapack_complex_float* VT, lapack_int const* ldvt,
lapack_complex_float* U, lapack_int const* ldu,
lapack_complex_float* C, lapack_int const* ldc,
float* rwork,
lapack_int* info );
#define LAPACK_dbdsqr LAPACK_GLOBAL(dbdsqr,DBDSQR)
void LAPACK_dbdsqr(
char const* uplo,
lapack_int const* n, lapack_int const* ncvt, lapack_int const* nru, lapack_int const* ncc,
double* D,
double* E,
double* VT, lapack_int const* ldvt,
double* U, lapack_int const* ldu,
double* C, lapack_int const* ldc,
double* work,
lapack_int* info );
#define LAPACK_sbdsqr LAPACK_GLOBAL(sbdsqr,SBDSQR)
void LAPACK_sbdsqr(
char const* uplo,
lapack_int const* n, lapack_int const* ncvt, lapack_int const* nru, lapack_int const* ncc,
float* D,
float* E,
float* VT, lapack_int const* ldvt,
float* U, lapack_int const* ldu,
float* C, lapack_int const* ldc,
float* work,
lapack_int* info );
#define LAPACK_zbdsqr LAPACK_GLOBAL(zbdsqr,ZBDSQR)
void LAPACK_zbdsqr(
char const* uplo,
lapack_int const* n, lapack_int const* ncvt, lapack_int const* nru, lapack_int const* ncc,
double* D,
double* E,
lapack_complex_double* VT, lapack_int const* ldvt,
lapack_complex_double* U, lapack_int const* ldu,
lapack_complex_double* C, lapack_int const* ldc,
double* rwork,
lapack_int* info );
#define LAPACK_dbdsvdx LAPACK_GLOBAL(dbdsvdx,DBDSVDX)
void LAPACK_dbdsvdx(
char const* uplo, char const* jobz, char const* range,
lapack_int const* n,
double const* D,
double const* E,
double const* vl,
double const* vu, lapack_int const* il, lapack_int const* iu, lapack_int* ns,
double* S,
double* Z, lapack_int const* ldz,
double* work,
lapack_int* iwork,
lapack_int* info );
#define LAPACK_sbdsvdx LAPACK_GLOBAL(sbdsvdx,SBDSVDX)
void LAPACK_sbdsvdx(
char const* uplo, char const* jobz, char const* range,
lapack_int const* n,
float const* D,
float const* E,
float const* vl,
float const* vu, lapack_int const* il, lapack_int const* iu, lapack_int* ns,
float* S,
float* Z, lapack_int const* ldz,
float* work,
lapack_int* iwork,
lapack_int* info );
#define LAPACK_ddisna LAPACK_GLOBAL(ddisna,DDISNA)
void LAPACK_ddisna(
char const* job,
lapack_int const* m, lapack_int const* n,
double const* D,
double* SEP,
lapack_int* info );
#define LAPACK_sdisna LAPACK_GLOBAL(sdisna,SDISNA)
void LAPACK_sdisna(
char const* job,
lapack_int const* m, lapack_int const* n,
float const* D,
float* SEP,
lapack_int* info );
#define LAPACK_cgbbrd LAPACK_GLOBAL(cgbbrd,CGBBRD)
void LAPACK_cgbbrd(
char const* vect,
lapack_int const* m, lapack_int const* n, lapack_int const* ncc, lapack_int const* kl, lapack_int const* ku,
lapack_complex_float* AB, lapack_int const* ldab,
float* D,
float* E,
lapack_complex_float* Q, lapack_int const* ldq,
lapack_complex_float* PT, lapack_int const* ldpt,
lapack_complex_float* C, lapack_int const* ldc,
lapack_complex_float* work,
float* rwork,
lapack_int* info );
#define LAPACK_dgbbrd LAPACK_GLOBAL(dgbbrd,DGBBRD)
void LAPACK_dgbbrd(
char const* vect,
lapack_int const* m, lapack_int const* n, lapack_int const* ncc, lapack_int const* kl, lapack_int const* ku,
double* AB, lapack_int const* ldab,
double* D,
double* E,
double* Q, lapack_int const* ldq,
double* PT, lapack_int const* ldpt,
double* C, lapack_int const* ldc,
double* work,
lapack_int* info );
#define LAPACK_sgbbrd LAPACK_GLOBAL(sgbbrd,SGBBRD)
void LAPACK_sgbbrd(
char const* vect,
lapack_int const* m, lapack_int const* n, lapack_int const* ncc, lapack_int const* kl, lapack_int const* ku,
float* AB, lapack_int const* ldab,
float* D,
float* E,
float* Q, lapack_int const* ldq,
float* PT, lapack_int const* ldpt,
float* C, lapack_int const* ldc,
float* work,
lapack_int* info );
#define LAPACK_zgbbrd LAPACK_GLOBAL(zgbbrd,ZGBBRD)
void LAPACK_zgbbrd(
char const* vect,
lapack_int const* m, lapack_int const* n, lapack_int const* ncc, lapack_int const* kl, lapack_int const* ku,
lapack_complex_double* AB, lapack_int const* ldab,
double* D,
double* E,
lapack_complex_double* Q, lapack_int const* ldq,
lapack_complex_double* PT, lapack_int const* ldpt,
lapack_complex_double* C, lapack_int const* ldc,
lapack_complex_double* work,
double* rwork,
lapack_int* info );
#define LAPACK_cgbcon LAPACK_GLOBAL(cgbcon,CGBCON)
void LAPACK_cgbcon(
char const* norm,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku,
lapack_complex_float const* AB, lapack_int const* ldab, lapack_int const* ipiv,
float const* anorm,
float* rcond,
lapack_complex_float* work,
float* rwork,
lapack_int* info );
#define LAPACK_dgbcon LAPACK_GLOBAL(dgbcon,DGBCON)
void LAPACK_dgbcon(
char const* norm,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku,
double const* AB, lapack_int const* ldab, lapack_int const* ipiv,
double const* anorm,
double* rcond,
double* work,
lapack_int* iwork,
lapack_int* info );
#define LAPACK_sgbcon LAPACK_GLOBAL(sgbcon,SGBCON)
void LAPACK_sgbcon(
char const* norm,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku,
float const* AB, lapack_int const* ldab, lapack_int const* ipiv,
float const* anorm,
float* rcond,
float* work,
lapack_int* iwork,
lapack_int* info );
#define LAPACK_zgbcon LAPACK_GLOBAL(zgbcon,ZGBCON)
void LAPACK_zgbcon(
char const* norm,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku,
lapack_complex_double const* AB, lapack_int const* ldab, lapack_int const* ipiv,
double const* anorm,
double* rcond,
lapack_complex_double* work,
double* rwork,
lapack_int* info );
#define LAPACK_cgbequ LAPACK_GLOBAL(cgbequ,CGBEQU)
void LAPACK_cgbequ(
lapack_int const* m, lapack_int const* n, lapack_int const* kl, lapack_int const* ku,
lapack_complex_float const* AB, lapack_int const* ldab,
float* R,
float* C,
float* rowcnd,
float* colcnd,
float* amax,
lapack_int* info );
#define LAPACK_dgbequ LAPACK_GLOBAL(dgbequ,DGBEQU)
void LAPACK_dgbequ(
lapack_int const* m, lapack_int const* n, lapack_int const* kl, lapack_int const* ku,
double const* AB, lapack_int const* ldab,
double* R,
double* C,
double* rowcnd,
double* colcnd,
double* amax,
lapack_int* info );
#define LAPACK_sgbequ LAPACK_GLOBAL(sgbequ,SGBEQU)
void LAPACK_sgbequ(
lapack_int const* m, lapack_int const* n, lapack_int const* kl, lapack_int const* ku,
float const* AB, lapack_int const* ldab,
float* R,
float* C,
float* rowcnd,
float* colcnd,
float* amax,
lapack_int* info );
#define LAPACK_zgbequ LAPACK_GLOBAL(zgbequ,ZGBEQU)
void LAPACK_zgbequ(
lapack_int const* m, lapack_int const* n, lapack_int const* kl, lapack_int const* ku,
lapack_complex_double const* AB, lapack_int const* ldab,
double* R,
double* C,
double* rowcnd,
double* colcnd,
double* amax,
lapack_int* info );
#define LAPACK_cgbequb LAPACK_GLOBAL(cgbequb,CGBEQUB)
void LAPACK_cgbequb(
lapack_int const* m, lapack_int const* n, lapack_int const* kl, lapack_int const* ku,
lapack_complex_float const* AB, lapack_int const* ldab,
float* R,
float* C,
float* rowcnd,
float* colcnd,
float* amax,
lapack_int* info );
#define LAPACK_dgbequb LAPACK_GLOBAL(dgbequb,DGBEQUB)
void LAPACK_dgbequb(
lapack_int const* m, lapack_int const* n, lapack_int const* kl, lapack_int const* ku,
double const* AB, lapack_int const* ldab,
double* R,
double* C,
double* rowcnd,
double* colcnd,
double* amax,
lapack_int* info );
#define LAPACK_sgbequb LAPACK_GLOBAL(sgbequb,SGBEQUB)
void LAPACK_sgbequb(
lapack_int const* m, lapack_int const* n, lapack_int const* kl, lapack_int const* ku,
float const* AB, lapack_int const* ldab,
float* R,
float* C,
float* rowcnd,
float* colcnd,
float* amax,
lapack_int* info );
#define LAPACK_zgbequb LAPACK_GLOBAL(zgbequb,ZGBEQUB)
void LAPACK_zgbequb(
lapack_int const* m, lapack_int const* n, lapack_int const* kl, lapack_int const* ku,
lapack_complex_double const* AB, lapack_int const* ldab,
double* R,
double* C,
double* rowcnd,
double* colcnd,
double* amax,
lapack_int* info );
#define LAPACK_cgbrfs LAPACK_GLOBAL(cgbrfs,CGBRFS)
void LAPACK_cgbrfs(
char const* trans,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
lapack_complex_float const* AB, lapack_int const* ldab,
lapack_complex_float const* AFB, lapack_int const* ldafb, lapack_int const* ipiv,
lapack_complex_float const* B, lapack_int const* ldb,
lapack_complex_float* X, lapack_int const* ldx,
float* ferr,
float* berr,
lapack_complex_float* work,
float* rwork,
lapack_int* info );
#define LAPACK_dgbrfs LAPACK_GLOBAL(dgbrfs,DGBRFS)
void LAPACK_dgbrfs(
char const* trans,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
double const* AB, lapack_int const* ldab,
double const* AFB, lapack_int const* ldafb, lapack_int const* ipiv,
double const* B, lapack_int const* ldb,
double* X, lapack_int const* ldx,
double* ferr,
double* berr,
double* work,
lapack_int* iwork,
lapack_int* info );
#define LAPACK_sgbrfs LAPACK_GLOBAL(sgbrfs,SGBRFS)
void LAPACK_sgbrfs(
char const* trans,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
float const* AB, lapack_int const* ldab,
float const* AFB, lapack_int const* ldafb, lapack_int const* ipiv,
float const* B, lapack_int const* ldb,
float* X, lapack_int const* ldx,
float* ferr,
float* berr,
float* work,
lapack_int* iwork,
lapack_int* info );
#define LAPACK_zgbrfs LAPACK_GLOBAL(zgbrfs,ZGBRFS)
void LAPACK_zgbrfs(
char const* trans,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
lapack_complex_double const* AB, lapack_int const* ldab,
lapack_complex_double const* AFB, lapack_int const* ldafb, lapack_int const* ipiv,
lapack_complex_double const* B, lapack_int const* ldb,
lapack_complex_double* X, lapack_int const* ldx,
double* ferr,
double* berr,
lapack_complex_double* work,
double* rwork,
lapack_int* info );
#define LAPACK_cgbrfsx LAPACK_GLOBAL(cgbrfsx,CGBRFSX)
void LAPACK_cgbrfsx(
char const* trans, char const* equed,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
lapack_complex_float const* AB, lapack_int const* ldab,
lapack_complex_float const* AFB, lapack_int const* ldafb, lapack_int const* ipiv,
const float* R,
const float* C,
lapack_complex_float const* B, lapack_int const* ldb,
lapack_complex_float* X, lapack_int const* ldx,
float* rcond,
float* berr, lapack_int const* n_err_bnds,
float* err_bnds_norm,
float* err_bnds_comp, lapack_int const* nparams,
float* params,
lapack_complex_float* work,
float* rwork,
lapack_int* info );
#define LAPACK_dgbrfsx LAPACK_GLOBAL(dgbrfsx,DGBRFSX)
void LAPACK_dgbrfsx(
char const* trans, char const* equed,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
double const* AB, lapack_int const* ldab,
double const* AFB, lapack_int const* ldafb, lapack_int const* ipiv,
const double* R,
const double* C,
double const* B, lapack_int const* ldb,
double* X, lapack_int const* ldx,
double* rcond,
double* berr, lapack_int const* n_err_bnds,
double* err_bnds_norm,
double* err_bnds_comp, lapack_int const* nparams,
double* params,
double* work,
lapack_int* iwork,
lapack_int* info );
#define LAPACK_sgbrfsx LAPACK_GLOBAL(sgbrfsx,SGBRFSX)
void LAPACK_sgbrfsx(
char const* trans, char const* equed,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
float const* AB, lapack_int const* ldab,
float const* AFB, lapack_int const* ldafb, lapack_int const* ipiv,
const float* R,
const float* C,
float const* B, lapack_int const* ldb,
float* X, lapack_int const* ldx,
float* rcond,
float* berr, lapack_int const* n_err_bnds,
float* err_bnds_norm,
float* err_bnds_comp, lapack_int const* nparams,
float* params,
float* work,
lapack_int* iwork,
lapack_int* info );
#define LAPACK_zgbrfsx LAPACK_GLOBAL(zgbrfsx,ZGBRFSX)
void LAPACK_zgbrfsx(
char const* trans, char const* equed,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
lapack_complex_double const* AB, lapack_int const* ldab,
lapack_complex_double const* AFB, lapack_int const* ldafb, lapack_int const* ipiv,
const double* R,
const double* C,
lapack_complex_double const* B, lapack_int const* ldb,
lapack_complex_double* X, lapack_int const* ldx,
double* rcond,
double* berr, lapack_int const* n_err_bnds,
double* err_bnds_norm,
double* err_bnds_comp, lapack_int const* nparams,
double* params,
lapack_complex_double* work,
double* rwork,
lapack_int* info );
#define LAPACK_cgbsv LAPACK_GLOBAL(cgbsv,CGBSV)
void LAPACK_cgbsv(
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
lapack_complex_float* AB, lapack_int const* ldab, lapack_int* ipiv,
lapack_complex_float* B, lapack_int const* ldb,
lapack_int* info );
#define LAPACK_dgbsv LAPACK_GLOBAL(dgbsv,DGBSV)
void LAPACK_dgbsv(
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
double* AB, lapack_int const* ldab, lapack_int* ipiv,
double* B, lapack_int const* ldb,
lapack_int* info );
#define LAPACK_sgbsv LAPACK_GLOBAL(sgbsv,SGBSV)
void LAPACK_sgbsv(
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
float* AB, lapack_int const* ldab, lapack_int* ipiv,
float* B, lapack_int const* ldb,
lapack_int* info );
#define LAPACK_zgbsv LAPACK_GLOBAL(zgbsv,ZGBSV)
void LAPACK_zgbsv(
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
lapack_complex_double* AB, lapack_int const* ldab, lapack_int* ipiv,
lapack_complex_double* B, lapack_int const* ldb,
lapack_int* info );
#define LAPACK_cgbsvx LAPACK_GLOBAL(cgbsvx,CGBSVX)
void LAPACK_cgbsvx(
char const* fact, char const* trans,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
lapack_complex_float* AB, lapack_int const* ldab,
lapack_complex_float* AFB, lapack_int const* ldafb, lapack_int* ipiv, char* equed,
float* R,
float* C,
lapack_complex_float* B,
lapack_int const* ldb,
lapack_complex_float* X, lapack_int const* ldx,
float* rcond,
float* ferr,
float* berr,
lapack_complex_float* work,
float* rwork,
lapack_int* info );
#define LAPACK_dgbsvx LAPACK_GLOBAL(dgbsvx,DGBSVX)
void LAPACK_dgbsvx(
char const* fact, char const* trans,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
double* AB, lapack_int const* ldab,
double* AFB, lapack_int const* ldafb, lapack_int* ipiv, char* equed,
double* R,
double* C,
double* B,
lapack_int const* ldb,
double* X, lapack_int const* ldx,
double* rcond,
double* ferr,
double* berr,
double* work,
lapack_int* iwork,
lapack_int* info );
#define LAPACK_sgbsvx LAPACK_GLOBAL(sgbsvx,SGBSVX)
void LAPACK_sgbsvx(
char const* fact, char const* trans,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
float* AB, lapack_int const* ldab,
float* AFB, lapack_int const* ldafb, lapack_int* ipiv, char* equed,
float* R,
float* C,
float* B,
lapack_int const* ldb,
float* X, lapack_int const* ldx,
float* rcond,
float* ferr,
float* berr,
float* work,
lapack_int* iwork,
lapack_int* info );
#define LAPACK_zgbsvx LAPACK_GLOBAL(zgbsvx,ZGBSVX)
void LAPACK_zgbsvx(
char const* fact, char const* trans,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
lapack_complex_double* AB, lapack_int const* ldab,
lapack_complex_double* AFB, lapack_int const* ldafb, lapack_int* ipiv, char* equed,
double* R,
double* C,
lapack_complex_double* B,
lapack_int const* ldb,
lapack_complex_double* X, lapack_int const* ldx,
double* rcond,
double* ferr,
double* berr,
lapack_complex_double* work,
double* rwork,
lapack_int* info );
#define LAPACK_cgbsvxx LAPACK_GLOBAL(cgbsvxx,CGBSVXX)
void LAPACK_cgbsvxx(
char const* fact, char const* trans,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
lapack_complex_float* AB, lapack_int const* ldab,
lapack_complex_float* AFB, lapack_int const* ldafb, lapack_int* ipiv, char* equed,
float* R,
float* C,
lapack_complex_float* B,
lapack_int const* ldb,
lapack_complex_float* X, lapack_int const* ldx,
float* rcond,
float* rpvgrw,
float* berr, lapack_int const* n_err_bnds,
float* err_bnds_norm,
float* err_bnds_comp, lapack_int const* nparams,
float* params,
lapack_complex_float* work,
float* rwork,
lapack_int* info );
#define LAPACK_dgbsvxx LAPACK_GLOBAL(dgbsvxx,DGBSVXX)
void LAPACK_dgbsvxx(
char const* fact, char const* trans,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
double* AB, lapack_int const* ldab,
double* AFB, lapack_int const* ldafb, lapack_int* ipiv, char* equed,
double* R,
double* C,
double* B,
lapack_int const* ldb,
double* X, lapack_int const* ldx,
double* rcond,
double* rpvgrw,
double* berr, lapack_int const* n_err_bnds,
double* err_bnds_norm,
double* err_bnds_comp, lapack_int const* nparams,
double* params,
double* work,
lapack_int* iwork,
lapack_int* info );
#define LAPACK_sgbsvxx LAPACK_GLOBAL(sgbsvxx,SGBSVXX)
void LAPACK_sgbsvxx(
char const* fact, char const* trans,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
float* AB, lapack_int const* ldab,
float* AFB, lapack_int const* ldafb, lapack_int* ipiv, char* equed,
float* R,
float* C,
float* B,
lapack_int const* ldb,
float* X, lapack_int const* ldx,
float* rcond,
float* rpvgrw,
float* berr, lapack_int const* n_err_bnds,
float* err_bnds_norm,
float* err_bnds_comp, lapack_int const* nparams,
float* params,
float* work,
lapack_int* iwork,
lapack_int* info );
#define LAPACK_zgbsvxx LAPACK_GLOBAL(zgbsvxx,ZGBSVXX)
void LAPACK_zgbsvxx(
char const* fact, char const* trans,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
lapack_complex_double* AB, lapack_int const* ldab,
lapack_complex_double* AFB, lapack_int const* ldafb, lapack_int* ipiv, char* equed,
double* R,
double* C,
lapack_complex_double* B,
lapack_int const* ldb,
lapack_complex_double* X, lapack_int const* ldx,
double* rcond,
double* rpvgrw,
double* berr, lapack_int const* n_err_bnds,
double* err_bnds_norm,
double* err_bnds_comp, lapack_int const* nparams,
double* params,
lapack_complex_double* work,
double* rwork,
lapack_int* info );
#define LAPACK_cgbtrf LAPACK_GLOBAL(cgbtrf,CGBTRF)
void LAPACK_cgbtrf(
lapack_int const* m, lapack_int const* n, lapack_int const* kl, lapack_int const* ku,
lapack_complex_float* AB, lapack_int const* ldab, lapack_int* ipiv,
lapack_int* info );
#define LAPACK_dgbtrf LAPACK_GLOBAL(dgbtrf,DGBTRF)
void LAPACK_dgbtrf(
lapack_int const* m, lapack_int const* n, lapack_int const* kl, lapack_int const* ku,
double* AB, lapack_int const* ldab, lapack_int* ipiv,
lapack_int* info );
#define LAPACK_sgbtrf LAPACK_GLOBAL(sgbtrf,SGBTRF)
void LAPACK_sgbtrf(
lapack_int const* m, lapack_int const* n, lapack_int const* kl, lapack_int const* ku,
float* AB, lapack_int const* ldab, lapack_int* ipiv,
lapack_int* info );
#define LAPACK_zgbtrf LAPACK_GLOBAL(zgbtrf,ZGBTRF)
void LAPACK_zgbtrf(
lapack_int const* m, lapack_int const* n, lapack_int const* kl, lapack_int const* ku,
lapack_complex_double* AB, lapack_int const* ldab, lapack_int* ipiv,
lapack_int* info );
#define LAPACK_cgbtrs LAPACK_GLOBAL(cgbtrs,CGBTRS)
void LAPACK_cgbtrs(
char const* trans,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
lapack_complex_float const* AB, lapack_int const* ldab, lapack_int const* ipiv,
lapack_complex_float* B, lapack_int const* ldb,
lapack_int* info );
#define LAPACK_dgbtrs LAPACK_GLOBAL(dgbtrs,DGBTRS)
void LAPACK_dgbtrs(
char const* trans,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
double const* AB, lapack_int const* ldab, lapack_int const* ipiv,
double* B, lapack_int const* ldb,
lapack_int* info );
#define LAPACK_sgbtrs LAPACK_GLOBAL(sgbtrs,SGBTRS)
void LAPACK_sgbtrs(
char const* trans,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
float const* AB, lapack_int const* ldab, lapack_int const* ipiv,
float* B, lapack_int const* ldb,
lapack_int* info );
#define LAPACK_zgbtrs LAPACK_GLOBAL(zgbtrs,ZGBTRS)
void LAPACK_zgbtrs(
char const* trans,
lapack_int const* n, lapack_int const* kl, lapack_int const* ku, lapack_int const* nrhs,
lapack_complex_double const* AB, lapack_int const* ldab, lapack_int const* ipiv,
lapack_complex_double* B, lapack_int const* ldb,
lapack_int* info );
#define LAPACK_cgebak LAPACK_GLOBAL(cgebak,CGEBAK)
void LAPACK_cgebak(
char const* job, char const* side,
lapack_int const* n, lapack_int const* ilo, lapack_int const* ihi,
float const* scale, lapack_int const* m,
lapack_complex_float* V, lapack_int const* ldv,
lapack_int* info );
#define LAPACK_dgebak LAPACK_GLOBAL(dgebak,DGEBAK)
void LAPACK_dgebak(
char const* job, char const* side,
lapack_int const* n, lapack_int const* ilo, lapack_int const* ihi,
double const* scale, lapack_int const* m,
double* V, lapack_int const* ldv,
lapack_int* info );
#define LAPACK_sgebak LAPACK_GLOBAL(sgebak,SGEBAK)
void LAPACK_sgebak(
char const* job, char const* side,
lapack_int const* n, lapack_int const* ilo, lapack_int const* ihi,
float const* scale, lapack_int const* m,
float* V, lapack_int const* ldv,
lapack_int* info );
#define LAPACK_zgebak LAPACK_GLOBAL(zgebak,ZGEBAK)
void LAPACK_zgebak(
char const* job, char const* side,
lapack_int const* n, lapack_int const* ilo, lapack_int const* ihi,
double const* scale, lapack_int const* m,
lapack_complex_double* V, lapack_int const* ldv,
lapack_int* info );
#define LAPACK_cgebal LAPACK_GLOBAL(cgebal,CGEBAL)
void LAPACK_cgebal(
char const* job,
lapack_int const* n,
lapack_complex_float* A, lapack_int const* lda, lapack_int* ilo, lapack_int* ihi,
float* scale,
lapack_int* info );
#define LAPACK_dgebal LAPACK_GLOBAL(dgebal,DGEBAL)
void LAPACK_dgebal(
char const* job,
lapack_int const* n,
double* A, lapack_int const* lda, lapack_int* ilo, lapack_int* ihi,
double* scale,
lapack_int* info );
#define LAPACK_sgebal LAPACK_GLOBAL(sgebal,SGEBAL)
void LAPACK_sgebal(
char const* job,
lapack_int const* n,
float* A, lapack_int const* lda, lapack_int* ilo, lapack_int* ihi,
float* scale,
lapack_int* info );
#define LAPACK_zgebal LAPACK_GLOBAL(zgebal,ZGEBAL)
void LAPACK_zgebal(
char const* job,
lapack_int const* n,
lapack_complex_double* A, lapack_int const* lda, lapack_int* ilo, lapack_int* ihi,
double* scale,
lapack_int* info );
#define LAPACK_cgebrd LAPACK_GLOBAL(cgebrd,CGEBRD)
void LAPACK_cgebrd(
lapack_int const* m, lapack_int const* n,
lapack_complex_float* A, lapack_int const* lda,
float* D,
float* E,
lapack_complex_float* tauq,
lapack_complex_float* taup,
lapack_complex_float* work, lapack_int const* lwork,
lapack_int* info );
#define LAPACK_dgebrd LAPACK_GLOBAL(dgebrd,DGEBRD)
void LAPACK_dgebrd(
lapack_int const* m, lapack_int const* n,
double* A, lapack_int const* lda,
double* D,
double* E,
double* tauq,
double* taup,
double* work, lapack_int const* lwork,
lapack_int* info );
#define LAPACK_sgebrd LAPACK_GLOBAL(sgebrd,SGEBRD)
void LAPACK_sgebrd(
lapack_int const* m, lapack_int const* n,
float* A, lapack_int const* lda,
float* D,
float* E,
float* tauq,
float* taup,
float* work, lapack_int const* lwork,
lapack_int* info );
#define LAPACK_zgebrd LAPACK_GLOBAL(zgebrd,ZGEBRD)
void LAPACK_zgebrd(
lapack_int const* m, lapack_int const* n,
lapack_complex_double* A, lapack_int const* lda,
double* D,
double* E,
lapack_complex_double* tauq,
lapack_complex_double* taup,
lapack_complex_double* work, lapack_int const* lwork,
lapack_int* info );
#define LAPACK_cgecon LAPACK_GLOBAL(cgecon,CGECON)
void LAPACK_cgecon(
char const* norm,
lapack_int const* n,
lapack_complex_float const* A, lapack_int const* lda,
float const* anorm,
float* rcond,
lapack_complex_float* work,
float* rwork,
lapack_int* info );
#define LAPACK_dgecon LAPACK_GLOBAL(dgecon,DGECON)
void LAPACK_dgecon(
char const* norm,