LAPACK
3.9.0
LAPACK: Linear Algebra PACKage
lapacke_zhesvx.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 zhesvx
30
* Author: Intel Corporation
31
* Generated November 2015
32
*****************************************************************************/
33
34
#include "
lapacke_utils.h
"
35
36
lapack_int
LAPACKE_zhesvx
(
int
matrix_layout,
char
fact,
char
uplo,
lapack_int
n,
37
lapack_int
nrhs,
const
lapack_complex_double
* a,
38
lapack_int
lda,
lapack_complex_double
* af,
39
lapack_int
ldaf,
lapack_int
* ipiv,
40
const
lapack_complex_double
* b,
lapack_int
ldb,
41
lapack_complex_double
* x,
lapack_int
ldx,
42
double
* rcond,
double
* ferr,
double
* berr )
43
{
44
lapack_int
info = 0;
45
lapack_int
lwork = -1;
46
double
* rwork = NULL;
47
lapack_complex_double
* work = NULL;
48
lapack_complex_double
work_query;
49
if
( matrix_layout !=
LAPACK_COL_MAJOR
&& matrix_layout !=
LAPACK_ROW_MAJOR
) {
50
LAPACKE_xerbla
(
"LAPACKE_zhesvx"
, -1 );
51
return
-1;
52
}
53
#ifndef LAPACK_DISABLE_NAN_CHECK
54
if
(
LAPACKE_get_nancheck
() ) {
55
/* Optionally check input matrices for NaNs */
56
if
(
LAPACKE_zhe_nancheck
( matrix_layout, uplo, n, a, lda ) ) {
57
return
-6;
58
}
59
if
(
LAPACKE_lsame
( fact,
'f'
) ) {
60
if
(
LAPACKE_zhe_nancheck
( matrix_layout, uplo, n, af, ldaf ) ) {
61
return
-8;
62
}
63
}
64
if
(
LAPACKE_zge_nancheck
( matrix_layout, n, nrhs, b, ldb ) ) {
65
return
-11;
66
}
67
}
68
#endif
69
/* Allocate memory for working array(s) */
70
rwork = (
double
*)
LAPACKE_malloc
(
sizeof
(
double
) *
MAX
(1,n) );
71
if
( rwork == NULL ) {
72
info =
LAPACK_WORK_MEMORY_ERROR
;
73
goto
exit_level_0;
74
}
75
/* Query optimal working array(s) size */
76
info =
LAPACKE_zhesvx_work
( matrix_layout, fact, uplo, n, nrhs, a, lda, af,
77
ldaf, ipiv, b, ldb, x, ldx, rcond, ferr, berr,
78
&work_query, lwork, rwork );
79
if
( info != 0 ) {
80
goto
exit_level_1;
81
}
82
lwork =
LAPACK_Z2INT
( work_query );
83
/* Allocate memory for work arrays */
84
work = (
lapack_complex_double
*)
85
LAPACKE_malloc
(
sizeof
(
lapack_complex_double
) * lwork );
86
if
( work == NULL ) {
87
info =
LAPACK_WORK_MEMORY_ERROR
;
88
goto
exit_level_1;
89
}
90
/* Call middle-level interface */
91
info =
LAPACKE_zhesvx_work
( matrix_layout, fact, uplo, n, nrhs, a, lda, af,
92
ldaf, ipiv, b, ldb, x, ldx, rcond, ferr, berr,
93
work, lwork, rwork );
94
/* Release memory and exit */
95
LAPACKE_free
( work );
96
exit_level_1:
97
LAPACKE_free
( rwork );
98
exit_level_0:
99
if
( info ==
LAPACK_WORK_MEMORY_ERROR
) {
100
LAPACKE_xerbla
(
"LAPACKE_zhesvx"
, info );
101
}
102
return
info;
103
}
LAPACKE_free
#define LAPACKE_free(p)
Definition:
lapacke.h:47
LAPACKE_zhesvx
lapack_int LAPACKE_zhesvx(int matrix_layout, char fact, char uplo, lapack_int n, lapack_int nrhs, const lapack_complex_double *a, lapack_int lda, lapack_complex_double *af, lapack_int ldaf, lapack_int *ipiv, const lapack_complex_double *b, lapack_int ldb, lapack_complex_double *x, lapack_int ldx, double *rcond, double *ferr, double *berr)
Definition:
lapacke_zhesvx.c:35
lapack_int
#define lapack_int
Definition:
lapack.h:21
lapacke_utils.h
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_zhesvx_work
lapack_int LAPACKE_zhesvx_work(int matrix_layout, char fact, char uplo, lapack_int n, lapack_int nrhs, const lapack_complex_double *a, lapack_int lda, lapack_complex_double *af, lapack_int ldaf, lapack_int *ipiv, const lapack_complex_double *b, lapack_int ldb, lapack_complex_double *x, lapack_int ldx, double *rcond, double *ferr, double *berr, lapack_complex_double *work, lapack_int lwork, double *rwork)
Definition:
lapacke_zhesvx_work.c:35
lapack_complex_double
#define lapack_complex_double
Definition:
lapack.h:70
LAPACKE_zhe_nancheck
lapack_logical LAPACKE_zhe_nancheck(int matrix_layout, char uplo, lapack_int n, const lapack_complex_double *a, lapack_int lda)
Definition:
lapacke_zhe_nancheck.c:36
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_zhesvx.c
Generated on Wed May 5 2021 15:10:36 for LAPACK by
1.8.16