OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
lapacke_dgesdd_work.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 middle-level C interface to LAPACK function dgesdd
30* Author: Intel Corporation
31*****************************************************************************/
32
33#include "lapacke_utils.h"
34
35lapack_int LAPACKE_dgesdd_work( int matrix_layout, char jobz, lapack_int m,
36 lapack_int n, double* a, lapack_int lda,
37 double* s, double* u, lapack_int ldu,
38 double* vt, lapack_int ldvt, double* work,
39 lapack_int lwork, lapack_int* iwork )
40{
41 lapack_int info = 0;
42 if( matrix_layout == LAPACK_COL_MAJOR ) {
43 /* Call LAPACK function and adjust info */
44 LAPACK_dgesdd( &jobz, &m, &n, a, &lda, s, u, &ldu, vt, &ldvt, work,
45 &lwork, iwork, &info );
46 if( info < 0 ) {
47 info = info - 1;
48 }
49 } else if( matrix_layout == LAPACK_ROW_MAJOR ) {
50 lapack_int nrows_u = ( LAPACKE_lsame( jobz, 'a' ) ||
51 LAPACKE_lsame( jobz, 's' ) ||
52 ( LAPACKE_lsame( jobz, 'o' ) && m<n) ) ? m : 1;
53 lapack_int ncols_u = ( LAPACKE_lsame( jobz, 'a' ) ||
54 ( LAPACKE_lsame( jobz, 'o' ) && m<n) ) ? m :
55 ( LAPACKE_lsame( jobz, 's' ) ? MIN(m,n) : 1);
56 lapack_int nrows_vt = ( LAPACKE_lsame( jobz, 'a' ) ||
57 ( LAPACKE_lsame( jobz, 'o' ) && m>=n) ) ? n :
58 ( LAPACKE_lsame( jobz, 's' ) ? MIN(m,n) : 1);
59 lapack_int lda_t = MAX(1,m);
60 lapack_int ldu_t = MAX(1,nrows_u);
61 lapack_int ldvt_t = MAX(1,nrows_vt);
62 double* a_t = NULL;
63 double* u_t = NULL;
64 double* vt_t = NULL;
65 /* Check leading dimension(s) */
66 if( lda < n ) {
67 info = -6;
68 LAPACKE_xerbla( "LAPACKE_dgesdd_work", info );
69 return info;
70 }
71 if( ldu < ncols_u ) {
72 info = -9;
73 LAPACKE_xerbla( "LAPACKE_dgesdd_work", info );
74 return info;
75 }
76 if( ldvt < n ) {
77 info = -11;
78 LAPACKE_xerbla( "LAPACKE_dgesdd_work", info );
79 return info;
80 }
81 /* Query optimal working array(s) size if requested */
82 if( lwork == -1 ) {
83 LAPACK_dgesdd( &jobz, &m, &n, a, &lda_t, s, u, &ldu_t, vt, &ldvt_t,
84 work, &lwork, iwork, &info );
85 return (info < 0) ? (info - 1) : info;
86 }
87 /* Allocate memory for temporary array(s) */
88 a_t = (double*)LAPACKE_malloc( sizeof(double) * lda_t * MAX(1,n) );
89 if( a_t == NULL ) {
91 goto exit_level_0;
92 }
93 if( LAPACKE_lsame( jobz, 'a' ) || LAPACKE_lsame( jobz, 's' ) ||
94 ( LAPACKE_lsame( jobz, 'o' ) && (m<n) ) ) {
95 u_t = (double*)
96 LAPACKE_malloc( sizeof(double) * ldu_t * MAX(1,ncols_u) );
97 if( u_t == NULL ) {
99 goto exit_level_1;
100 }
101 }
102 if( LAPACKE_lsame( jobz, 'a' ) || LAPACKE_lsame( jobz, 's' ) ||
103 ( LAPACKE_lsame( jobz, 'o' ) && (m>=n) ) ) {
104 vt_t = (double*)
105 LAPACKE_malloc( sizeof(double) * ldvt_t * MAX(1,n) );
106 if( vt_t == NULL ) {
108 goto exit_level_2;
109 }
110 }
111 /* Transpose input matrices */
112 LAPACKE_dge_trans( matrix_layout, m, n, a, lda, a_t, lda_t );
113 /* Call LAPACK function and adjust info */
114 LAPACK_dgesdd( &jobz, &m, &n, a_t, &lda_t, s, u_t, &ldu_t, vt_t,
115 &ldvt_t, work, &lwork, iwork, &info );
116 if( info < 0 ) {
117 info = info - 1;
118 }
119 /* Transpose output matrices */
120 LAPACKE_dge_trans( LAPACK_COL_MAJOR, m, n, a_t, lda_t, a, lda );
121 if( LAPACKE_lsame( jobz, 'a' ) || LAPACKE_lsame( jobz, 's' ) ||
122 ( LAPACKE_lsame( jobz, 'o' ) && (m<n) ) ) {
123 LAPACKE_dge_trans( LAPACK_COL_MAJOR, nrows_u, ncols_u, u_t, ldu_t,
124 u, ldu );
125 }
126 if( LAPACKE_lsame( jobz, 'a' ) || LAPACKE_lsame( jobz, 's' ) ||
127 ( LAPACKE_lsame( jobz, 'o' ) && (m>=n) ) ) {
128 LAPACKE_dge_trans( LAPACK_COL_MAJOR, nrows_vt, n, vt_t, ldvt_t, vt,
129 ldvt );
130 }
131 /* Release memory and exit */
132 if( LAPACKE_lsame( jobz, 'a' ) || LAPACKE_lsame( jobz, 's' ) ||
133 ( LAPACKE_lsame( jobz, 'o' ) && (m>=n) ) ) {
134 LAPACKE_free( vt_t );
135 }
136exit_level_2:
137 if( LAPACKE_lsame( jobz, 'a' ) || LAPACKE_lsame( jobz, 's' ) ||
138 ( LAPACKE_lsame( jobz, 'o' ) && (m<n) ) ) {
139 LAPACKE_free( u_t );
140 }
141exit_level_1:
142 LAPACKE_free( a_t );
143exit_level_0:
144 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
145 LAPACKE_xerbla( "LAPACKE_dgesdd_work", info );
146 }
147 } else {
148 info = -1;
149 LAPACKE_xerbla( "LAPACKE_dgesdd_work", info );
150 }
151 return info;
152}
#define lapack_int
Definition lapack.h:83
#define LAPACK_dgesdd(...)
Definition lapack.h:3258
#define LAPACK_COL_MAJOR
Definition lapacke.h:53
#define LAPACKE_free(p)
Definition lapacke.h:46
#define LAPACK_ROW_MAJOR
Definition lapacke.h:52
#define LAPACKE_malloc(size)
Definition lapacke.h:43
#define LAPACK_TRANSPOSE_MEMORY_ERROR
Definition lapacke.h:56
lapack_int LAPACKE_dgesdd_work(int matrix_layout, char jobz, lapack_int m, lapack_int n, double *a, lapack_int lda, double *s, double *u, lapack_int ldu, double *vt, lapack_int ldvt, double *work, lapack_int lwork, lapack_int *iwork)
lapack_logical LAPACKE_lsame(char ca, char cb)
void LAPACKE_xerbla(const char *name, lapack_int info)
#define MIN(x, y)
#define MAX(x, y)
void LAPACKE_dge_trans(int matrix_layout, lapack_int m, lapack_int n, const double *in, lapack_int ldin, double *out, lapack_int ldout)
n