LAPACK  3.9.0
LAPACK: Linear Algebra PACKage
lapacke_dbbcsd.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 dbbcsd
30 * Author: Intel Corporation
31 * Generated June 2017
32 *****************************************************************************/
33 
34 #include "lapacke_utils.h"
35 
36 lapack_int LAPACKE_dbbcsd( int matrix_layout, char jobu1, char jobu2,
37  char jobv1t, char jobv2t, char trans, lapack_int m,
38  lapack_int p, lapack_int q, double* theta,
39  double* phi, double* u1, lapack_int ldu1, double* u2,
40  lapack_int ldu2, double* v1t, lapack_int ldv1t,
41  double* v2t, lapack_int ldv2t, double* b11d,
42  double* b11e, double* b12d, double* b12e,
43  double* b21d, double* b21e, double* b22d,
44  double* b22e )
45 {
46  lapack_int info = 0;
47  lapack_int lwork = -1;
48  double* work = NULL;
49  double work_query;
50  int lapack_layout;
51  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
52  LAPACKE_xerbla( "LAPACKE_dbbcsd", -1 );
53  return -1;
54  }
55  if( LAPACKE_lsame( trans, 'n' ) && matrix_layout == LAPACK_COL_MAJOR ) {
56  lapack_layout = LAPACK_COL_MAJOR;
57  } else {
58  lapack_layout = LAPACK_ROW_MAJOR;
59  }
60 #ifndef LAPACK_DISABLE_NAN_CHECK
61  if( LAPACKE_get_nancheck() ) {
62  /* Optionally check input matrices for NaNs */
63  if( LAPACKE_d_nancheck( q-1, phi, 1 ) ) {
64  return -11;
65  }
66  if( LAPACKE_d_nancheck( q, theta, 1 ) ) {
67  return -10;
68  }
69  if( LAPACKE_lsame( jobu1, 'y' ) ) {
70  if( LAPACKE_dge_nancheck( lapack_layout, p, p, u1, ldu1 ) ) {
71  return -12;
72  }
73  }
74  if( LAPACKE_lsame( jobu2, 'y' ) ) {
75  if( LAPACKE_dge_nancheck( lapack_layout, m-p, m-p, u2, ldu2 ) ) {
76  return -14;
77  }
78  }
79  if( LAPACKE_lsame( jobv1t, 'y' ) ) {
80  if( LAPACKE_dge_nancheck( lapack_layout, q, q, v1t, ldv1t ) ) {
81  return -16;
82  }
83  }
84  if( LAPACKE_lsame( jobv2t, 'y' ) ) {
85  if( LAPACKE_dge_nancheck( lapack_layout, m-q, m-q, v2t, ldv2t ) ) {
86  return -18;
87  }
88  }
89  }
90 #endif
91  /* Query optimal working array(s) size */
92  info = LAPACKE_dbbcsd_work( matrix_layout, jobu1, jobu2, jobv1t, jobv2t,
93  trans, m, p, q, theta, phi, u1, ldu1, u2, ldu2,
94  v1t, ldv1t, v2t, ldv2t, b11d, b11e, b12d, b12e,
95  b21d, b21e, b22d, b22e, &work_query, lwork );
96  if( info != 0 ) {
97  goto exit_level_0;
98  }
99  lwork = (lapack_int)work_query;
100  /* Allocate memory for work arrays */
101  work = (double*)LAPACKE_malloc( sizeof(double) * lwork );
102  if( work == NULL ) {
104  goto exit_level_0;
105  }
106  /* Call middle-level interface */
107  info = LAPACKE_dbbcsd_work( matrix_layout, jobu1, jobu2, jobv1t, jobv2t,
108  trans, m, p, q, theta, phi, u1, ldu1, u2, ldu2,
109  v1t, ldv1t, v2t, ldv2t, b11d, b11e, b12d, b12e,
110  b21d, b21e, b22d, b22e, work, lwork );
111  /* Release memory and exit */
112  LAPACKE_free( work );
113 exit_level_0:
114  if( info == LAPACK_WORK_MEMORY_ERROR ) {
115  LAPACKE_xerbla( "LAPACKE_dbbcsd", info );
116  }
117  return info;
118 }
LAPACKE_free
#define LAPACKE_free(p)
Definition: lapacke.h:47
lapack_int
#define lapack_int
Definition: lapack.h:21
lapacke_utils.h
LAPACKE_dbbcsd_work
lapack_int LAPACKE_dbbcsd_work(int matrix_layout, char jobu1, char jobu2, char jobv1t, char jobv2t, char trans, lapack_int m, lapack_int p, lapack_int q, double *theta, double *phi, double *u1, lapack_int ldu1, double *u2, lapack_int ldu2, double *v1t, lapack_int ldv1t, double *v2t, lapack_int ldv2t, double *b11d, double *b11e, double *b12d, double *b12e, double *b21d, double *b21e, double *b22d, double *b22e, double *work, lapack_int lwork)
Definition: lapacke_dbbcsd_work.c:35
LAPACKE_dge_nancheck
lapack_logical LAPACKE_dge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const double *a, lapack_int lda)
Definition: lapacke_dge_nancheck.c:36
LAPACK_WORK_MEMORY_ERROR
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:56
LAPACKE_dbbcsd
lapack_int LAPACKE_dbbcsd(int matrix_layout, char jobu1, char jobu2, char jobv1t, char jobv2t, char trans, lapack_int m, lapack_int p, lapack_int q, double *theta, double *phi, double *u1, lapack_int ldu1, double *u2, lapack_int ldu2, double *v1t, lapack_int ldv1t, double *v2t, lapack_int ldv2t, double *b11d, double *b11e, double *b12d, double *b12e, double *b21d, double *b21e, double *b22d, double *b22e)
Definition: lapacke_dbbcsd.c:35
LAPACKE_xerbla
void LAPACKE_xerbla(const char *name, lapack_int info)
Definition: lapacke_xerbla.c:36
LAPACKE_malloc
#define LAPACKE_malloc(size)
Definition: lapacke.h:44
LAPACKE_d_nancheck
lapack_logical LAPACKE_d_nancheck(lapack_int n, const double *x, lapack_int incx)
Definition: lapacke_d_nancheck.c:36
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