OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
lapacke_dbbcsd.c File Reference
#include "lapacke_utils.h"

Go to the source code of this file.

Functions

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)

Function Documentation

◆ 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 at line 35 of file lapacke_dbbcsd.c.

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