@@ -11517,6 +11517,22 @@ void LAPACK_sorgtsqr_row(
11517
11517
float* work, lapack_int const* lwork,
11518
11518
lapack_int* info );
11519
11519
11520
+ #define LAPACK_dorhr_col LAPACK_GLOBAL(dorhr_col,DORHR_COL)
11521
+ void LAPACK_dorhr_col(
11522
+ lapack_int const* m, lapack_int const* n,
11523
+ lapack_int const* nb, double* A,
11524
+ lapack_int const* lda, double* T,
11525
+ lapack_int const* ldt, double* D,
11526
+ lapack_int* info );
11527
+
11528
+ #define LAPACK_sorhr_col LAPACK_GLOBAL(sorhr_col,SORHR_COL)
11529
+ void LAPACK_sorhr_col(
11530
+ lapack_int const* m, lapack_int const* n,
11531
+ lapack_int const* nb, float* A,
11532
+ lapack_int const* lda, float* T,
11533
+ lapack_int const* ldt, float* D,
11534
+ lapack_int* info );
11535
+
11520
11536
#define LAPACK_dormbr_base LAPACK_GLOBAL(dormbr,DORMBR)
11521
11537
void LAPACK_dormbr_base(
11522
11538
char const* vect, char const* side, char const* trans,
@@ -22708,6 +22724,22 @@ void LAPACK_zungtsqr_row(
22708
22724
lapack_complex_double* work, lapack_int const* lwork,
22709
22725
lapack_int* info );
22710
22726
22727
+ #define LAPACK_cunhr_col LAPACK_GLOBAL(cunhr_col,CUNHR_COL)
22728
+ void LAPACK_cunhr_col(
22729
+ lapack_int const* m, lapack_int const* n,
22730
+ lapack_int const* nb, lapack_complex_float* A,
22731
+ lapack_int const* lda, lapack_complex_float* T,
22732
+ lapack_int const* ldt, lapack_complex_float* D,
22733
+ lapack_int* info );
22734
+
22735
+ #define LAPACK_zunhr_col LAPACK_GLOBAL(zunhr_col,ZUNHR_COL)
22736
+ void LAPACK_zunhr_col(
22737
+ lapack_int const* m, lapack_int const* n,
22738
+ lapack_int const* nb, lapack_complex_double* A,
22739
+ lapack_int const* lda, lapack_complex_double* T,
22740
+ lapack_int const* ldt, lapack_complex_double* D,
22741
+ lapack_int* info );
22742
+
22711
22743
#define LAPACK_cunmbr_base LAPACK_GLOBAL(cunmbr,CUNMBR)
22712
22744
void LAPACK_cunmbr_base(
22713
22745
char const* vect, char const* side, char const* trans,
0 commit comments