LAPACK 3.11.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches
lapacke_cstedc.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 cstedc
30* Author: Intel Corporation
31*****************************************************************************/
32
33#include "lapacke_utils.h"
34
35lapack_int LAPACKE_cstedc( int matrix_layout, char compz, lapack_int n, float* d,
36 float* e, lapack_complex_float* z, lapack_int ldz )
37{
38 lapack_int info = 0;
39 lapack_int liwork = -1;
40 lapack_int lrwork = -1;
41 lapack_int lwork = -1;
42 lapack_int* iwork = NULL;
43 float* rwork = NULL;
44 lapack_complex_float* work = NULL;
45 lapack_int iwork_query;
46 float rwork_query;
47 lapack_complex_float work_query;
48 if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
49 LAPACKE_xerbla( "LAPACKE_cstedc", -1 );
50 return -1;
51 }
52#ifndef LAPACK_DISABLE_NAN_CHECK
53 if( LAPACKE_get_nancheck() ) {
54 /* Optionally check input matrices for NaNs */
55 if( LAPACKE_s_nancheck( n, d, 1 ) ) {
56 return -4;
57 }
58 if( LAPACKE_s_nancheck( n-1, e, 1 ) ) {
59 return -5;
60 }
61 if( LAPACKE_lsame( compz, 'v' ) ) {
62 if( LAPACKE_cge_nancheck( matrix_layout, n, n, z, ldz ) ) {
63 return -6;
64 }
65 }
66 }
67#endif
68 /* Query optimal working array(s) size */
69 info = LAPACKE_cstedc_work( matrix_layout, compz, n, d, e, z, ldz,
70 &work_query, lwork, &rwork_query, lrwork,
71 &iwork_query, liwork );
72 if( info != 0 ) {
73 goto exit_level_0;
74 }
75 liwork = iwork_query;
76 lrwork = (lapack_int)rwork_query;
77 lwork = LAPACK_C2INT( work_query );
78 /* Allocate memory for work arrays */
79 iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * liwork );
80 if( iwork == NULL ) {
82 goto exit_level_0;
83 }
84 rwork = (float*)LAPACKE_malloc( sizeof(float) * lrwork );
85 if( rwork == NULL ) {
87 goto exit_level_1;
88 }
89 work = (lapack_complex_float*)
90 LAPACKE_malloc( sizeof(lapack_complex_float) * lwork );
91 if( work == NULL ) {
93 goto exit_level_2;
94 }
95 /* Call middle-level interface */
96 info = LAPACKE_cstedc_work( matrix_layout, compz, n, d, e, z, ldz, work,
97 lwork, rwork, lrwork, iwork, liwork );
98 /* Release memory and exit */
99 LAPACKE_free( work );
100exit_level_2:
101 LAPACKE_free( rwork );
102exit_level_1:
103 LAPACKE_free( iwork );
104exit_level_0:
105 if( info == LAPACK_WORK_MEMORY_ERROR ) {
106 LAPACKE_xerbla( "LAPACKE_cstedc", info );
107 }
108 return info;
109}
#define lapack_int
Definition: lapack.h:87
#define lapack_complex_float
Definition: lapack.h:46
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:55
#define LAPACK_COL_MAJOR
Definition: lapacke.h:53
#define LAPACK_C2INT(x)
Definition: lapacke.h:49
#define LAPACKE_free(p)
Definition: lapacke.h:46
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:52
int LAPACKE_get_nancheck(void)
#define LAPACKE_malloc(size)
Definition: lapacke.h:43
lapack_int LAPACKE_cstedc_work(int matrix_layout, char compz, lapack_int n, float *d, float *e, lapack_complex_float *z, lapack_int ldz, lapack_complex_float *work, lapack_int lwork, float *rwork, lapack_int lrwork, lapack_int *iwork, lapack_int liwork)
lapack_int LAPACKE_cstedc(int matrix_layout, char compz, lapack_int n, float *d, float *e, lapack_complex_float *z, lapack_int ldz)
lapack_logical LAPACKE_lsame(char ca, char cb)
Definition: lapacke_lsame.c:35
void LAPACKE_xerbla(const char *name, lapack_int info)
lapack_logical LAPACKE_s_nancheck(lapack_int n, const float *x, lapack_int incx)
lapack_logical LAPACKE_cge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_float *a, lapack_int lda)