Skip to content

Commit bc967e7

Browse files
authored
Add interfaces for [cz]unhr_col and [sd]orhr_col (Reference-LAPACK PR 827)
1 parent 2bbd619 commit bc967e7

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

lapack-netlib/LAPACKE/include/lapack.h

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11517,6 +11517,22 @@ void LAPACK_sorgtsqr_row(
1151711517
float* work, lapack_int const* lwork,
1151811518
lapack_int* info );
1151911519

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+
1152011536
#define LAPACK_dormbr_base LAPACK_GLOBAL(dormbr,DORMBR)
1152111537
void LAPACK_dormbr_base(
1152211538
char const* vect, char const* side, char const* trans,
@@ -22708,6 +22724,22 @@ void LAPACK_zungtsqr_row(
2270822724
lapack_complex_double* work, lapack_int const* lwork,
2270922725
lapack_int* info );
2271022726

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+
2271122743
#define LAPACK_cunmbr_base LAPACK_GLOBAL(cunmbr,CUNMBR)
2271222744
void LAPACK_cunmbr_base(
2271322745
char const* vect, char const* side, char const* trans,

0 commit comments

Comments
 (0)