LAPACK
3.9.0
LAPACK: Linear Algebra PACKage
lapacke_zhgeqz.c
Go to the documentation of this file.
1
/*****************************************************************************
2
Copyright (c) 2014, Intel Corp.
3
All rights reserved.
4
5
Redistribution and use in source and binary forms, with or without
6
modification, are permitted provided that the following conditions are met:
7
8
* Redistributions of source code must retain the above copyright notice,
9
this list of conditions and the following disclaimer.
10
* Redistributions in binary form must reproduce the above copyright
11
notice, this list of conditions and the following disclaimer in the
12
documentation and/or other materials provided with the distribution.
13
* Neither the name of Intel Corporation nor the names of its contributors
14
may be used to endorse or promote products derived from this software
15
without specific prior written permission.
16
17
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27
THE POSSIBILITY OF SUCH DAMAGE.
28
*****************************************************************************
29
* Contents: Native high-level C interface to LAPACK function zhgeqz
30
* Author: Intel Corporation
31
* Generated November 2015
32
*****************************************************************************/
33
34
#include "
lapacke_utils.h
"
35
36
lapack_int
LAPACKE_zhgeqz
(
int
matrix_layout,
char
job,
char
compq,
char
compz,
37
lapack_int
n,
lapack_int
ilo,
lapack_int
ihi,
38
lapack_complex_double
* h,
lapack_int
ldh,
39
lapack_complex_double
* t,
lapack_int
ldt,
40
lapack_complex_double
* alpha,
41
lapack_complex_double
* beta,
42
lapack_complex_double
* q,
lapack_int
ldq,
43
lapack_complex_double
* z,
lapack_int
ldz )
44
{
45
lapack_int
info = 0;
46
lapack_int
lwork = -1;
47
double
* rwork = NULL;
48
lapack_complex_double
* work = NULL;
49
lapack_complex_double
work_query;
50
if
( matrix_layout !=
LAPACK_COL_MAJOR
&& matrix_layout !=
LAPACK_ROW_MAJOR
) {
51
LAPACKE_xerbla
(
"LAPACKE_zhgeqz"
, -1 );
52
return
-1;
53
}
54
#ifndef LAPACK_DISABLE_NAN_CHECK
55
if
(
LAPACKE_get_nancheck
() ) {
56
/* Optionally check input matrices for NaNs */
57
if
(
LAPACKE_zge_nancheck
( matrix_layout, n, n, h, ldh ) ) {
58
return
-8;
59
}
60
if
(
LAPACKE_lsame
( compq,
'i'
) ||
LAPACKE_lsame
( compq,
'v'
) ) {
61
if
(
LAPACKE_zge_nancheck
( matrix_layout, n, n, q, ldq ) ) {
62
return
-14;
63
}
64
}
65
if
(
LAPACKE_zge_nancheck
( matrix_layout, n, n, t, ldt ) ) {
66
return
-10;
67
}
68
if
(
LAPACKE_lsame
( compz,
'i'
) ||
LAPACKE_lsame
( compz,
'v'
) ) {
69
if
(
LAPACKE_zge_nancheck
( matrix_layout, n, n, z, ldz ) ) {
70
return
-16;
71
}
72
}
73
}
74
#endif
75
/* Allocate memory for working array(s) */
76
rwork = (
double
*)
LAPACKE_malloc
(
sizeof
(
double
) *
MAX
(1,n) );
77
if
( rwork == NULL ) {
78
info =
LAPACK_WORK_MEMORY_ERROR
;
79
goto
exit_level_0;
80
}
81
/* Query optimal working array(s) size */
82
info =
LAPACKE_zhgeqz_work
( matrix_layout, job, compq, compz, n, ilo, ihi, h,
83
ldh, t, ldt, alpha, beta, q, ldq, z, ldz,
84
&work_query, lwork, rwork );
85
if
( info != 0 ) {
86
goto
exit_level_1;
87
}
88
lwork =
LAPACK_Z2INT
( work_query );
89
/* Allocate memory for work arrays */
90
work = (
lapack_complex_double
*)
91
LAPACKE_malloc
(
sizeof
(
lapack_complex_double
) * lwork );
92
if
( work == NULL ) {
93
info =
LAPACK_WORK_MEMORY_ERROR
;
94
goto
exit_level_1;
95
}
96
/* Call middle-level interface */
97
info =
LAPACKE_zhgeqz_work
( matrix_layout, job, compq, compz, n, ilo, ihi, h,
98
ldh, t, ldt, alpha, beta, q, ldq, z, ldz, work,
99
lwork, rwork );
100
/* Release memory and exit */
101
LAPACKE_free
( work );
102
exit_level_1:
103
LAPACKE_free
( rwork );
104
exit_level_0:
105
if
( info ==
LAPACK_WORK_MEMORY_ERROR
) {
106
LAPACKE_xerbla
(
"LAPACKE_zhgeqz"
, info );
107
}
108
return
info;
109
}
LAPACKE_free
#define LAPACKE_free(p)
Definition:
lapacke.h:47
lapack_int
#define lapack_int
Definition:
lapack.h:21
lapacke_utils.h
LAPACKE_zhgeqz
lapack_int LAPACKE_zhgeqz(int matrix_layout, char job, char compq, char compz, lapack_int n, lapack_int ilo, lapack_int ihi, lapack_complex_double *h, lapack_int ldh, lapack_complex_double *t, lapack_int ldt, lapack_complex_double *alpha, lapack_complex_double *beta, lapack_complex_double *q, lapack_int ldq, lapack_complex_double *z, lapack_int ldz)
Definition:
lapacke_zhgeqz.c:35
LAPACK_WORK_MEMORY_ERROR
#define LAPACK_WORK_MEMORY_ERROR
Definition:
lapacke.h:56
LAPACK_Z2INT
#define LAPACK_Z2INT(x)
Definition:
lapacke.h:51
LAPACKE_xerbla
void LAPACKE_xerbla(const char *name, lapack_int info)
Definition:
lapacke_xerbla.c:36
MAX
#define MAX(x, y)
Definition:
lapacke_utils.h:47
LAPACKE_zhgeqz_work
lapack_int LAPACKE_zhgeqz_work(int matrix_layout, char job, char compq, char compz, lapack_int n, lapack_int ilo, lapack_int ihi, lapack_complex_double *h, lapack_int ldh, lapack_complex_double *t, lapack_int ldt, lapack_complex_double *alpha, lapack_complex_double *beta, lapack_complex_double *q, lapack_int ldq, lapack_complex_double *z, lapack_int ldz, lapack_complex_double *work, lapack_int lwork, double *rwork)
Definition:
lapacke_zhgeqz_work.c:35
lapack_complex_double
#define lapack_complex_double
Definition:
lapack.h:70
LAPACKE_zge_nancheck
lapack_logical LAPACKE_zge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_double *a, lapack_int lda)
Definition:
lapacke_zge_nancheck.c:36
LAPACKE_malloc
#define LAPACKE_malloc(size)
Definition:
lapacke.h:44
LAPACKE_get_nancheck
int LAPACKE_get_nancheck()
Definition:
lapacke_nancheck.c:42
LAPACKE_lsame
lapack_logical LAPACKE_lsame(char ca, char cb)
Definition:
lapacke_lsame.c:35
LAPACK_ROW_MAJOR
#define LAPACK_ROW_MAJOR
Definition:
lapacke.h:53
LAPACK_COL_MAJOR
#define LAPACK_COL_MAJOR
Definition:
lapacke.h:54
LAPACKE
src
lapacke_zhgeqz.c
Generated on Wed May 5 2021 15:10:36 for LAPACK by
1.8.16