OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
lapacke_sgbbrd_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 sgbbrd
30* Author: Intel Corporation
31*****************************************************************************/
32
33#include "lapacke_utils.h"
34
35lapack_int LAPACKE_sgbbrd_work( int matrix_layout, char vect, lapack_int m,
37 lapack_int ku, float* ab, lapack_int ldab,
38 float* d, float* e, float* q, lapack_int ldq,
39 float* pt, lapack_int ldpt, float* c,
40 lapack_int ldc, float* work )
41{
42 lapack_int info = 0;
43 if( matrix_layout == LAPACK_COL_MAJOR ) {
44 /* Call LAPACK function and adjust info */
45 LAPACK_sgbbrd( &vect, &m, &n, &ncc, &kl, &ku, ab, &ldab, d, e, q, &ldq,
46 pt, &ldpt, c, &ldc, work, &info );
47 if( info < 0 ) {
48 info = info - 1;
49 }
50 } else if( matrix_layout == LAPACK_ROW_MAJOR ) {
51 lapack_int ldab_t = MAX(1,kl+ku+1);
52 lapack_int ldc_t = MAX(1,m);
53 lapack_int ldpt_t = MAX(1,n);
54 lapack_int ldq_t = MAX(1,m);
55 float* ab_t = NULL;
56 float* q_t = NULL;
57 float* pt_t = NULL;
58 float* c_t = NULL;
59 /* Check leading dimension(s) */
60 if( ldab < n ) {
61 info = -9;
62 LAPACKE_xerbla( "LAPACKE_sgbbrd_work", info );
63 return info;
64 }
65 if( ldc < ncc ) {
66 info = -17;
67 LAPACKE_xerbla( "LAPACKE_sgbbrd_work", info );
68 return info;
69 }
70 if( ldpt < n ) {
71 info = -15;
72 LAPACKE_xerbla( "LAPACKE_sgbbrd_work", info );
73 return info;
74 }
75 if( ldq < m ) {
76 info = -13;
77 LAPACKE_xerbla( "LAPACKE_sgbbrd_work", info );
78 return info;
79 }
80 /* Allocate memory for temporary array(s) */
81 ab_t = (float*)LAPACKE_malloc( sizeof(float) * ldab_t * MAX(1,n) );
82 if( ab_t == NULL ) {
84 goto exit_level_0;
85 }
86 if( LAPACKE_lsame( vect, 'b' ) || LAPACKE_lsame( vect, 'q' ) ) {
87 q_t = (float*)LAPACKE_malloc( sizeof(float) * ldq_t * MAX(1,m) );
88 if( q_t == NULL ) {
90 goto exit_level_1;
91 }
92 }
93 if( LAPACKE_lsame( vect, 'b' ) || LAPACKE_lsame( vect, 'p' ) ) {
94 pt_t = (float*)LAPACKE_malloc( sizeof(float) * ldpt_t * MAX(1,n) );
95 if( pt_t == NULL ) {
97 goto exit_level_2;
98 }
99 }
100 if( ncc != 0 ) {
101 c_t = (float*)LAPACKE_malloc( sizeof(float) * ldc_t * MAX(1,ncc) );
102 if( c_t == NULL ) {
104 goto exit_level_3;
105 }
106 }
107 /* Transpose input matrices */
108 LAPACKE_sgb_trans( matrix_layout, m, n, kl, ku, ab, ldab, ab_t, ldab_t );
109 if( ncc != 0 ) {
110 LAPACKE_sge_trans( matrix_layout, m, ncc, c, ldc, c_t, ldc_t );
111 }
112 /* Call LAPACK function and adjust info */
113 LAPACK_sgbbrd( &vect, &m, &n, &ncc, &kl, &ku, ab_t, &ldab_t, d, e, q_t,
114 &ldq_t, pt_t, &ldpt_t, c_t, &ldc_t, work, &info );
115 if( info < 0 ) {
116 info = info - 1;
117 }
118 /* Transpose output matrices */
119 LAPACKE_sgb_trans( LAPACK_COL_MAJOR, m, n, kl, ku, ab_t, ldab_t, ab,
120 ldab );
121 if( LAPACKE_lsame( vect, 'b' ) || LAPACKE_lsame( vect, 'q' ) ) {
122 LAPACKE_sge_trans( LAPACK_COL_MAJOR, m, m, q_t, ldq_t, q, ldq );
123 }
124 if( LAPACKE_lsame( vect, 'b' ) || LAPACKE_lsame( vect, 'p' ) ) {
125 LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, n, pt_t, ldpt_t, pt, ldpt );
126 }
127 if( ncc != 0 ) {
128 LAPACKE_sge_trans( LAPACK_COL_MAJOR, m, ncc, c_t, ldc_t, c, ldc );
129 }
130 /* Release memory and exit */
131 if( ncc != 0 ) {
132 LAPACKE_free( c_t );
133 }
134exit_level_3:
135 if( LAPACKE_lsame( vect, 'b' ) || LAPACKE_lsame( vect, 'p' ) ) {
136 LAPACKE_free( pt_t );
137 }
138exit_level_2:
139 if( LAPACKE_lsame( vect, 'b' ) || LAPACKE_lsame( vect, 'q' ) ) {
140 LAPACKE_free( q_t );
141 }
142exit_level_1:
143 LAPACKE_free( ab_t );
144exit_level_0:
145 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
146 LAPACKE_xerbla( "LAPACKE_sgbbrd_work", info );
147 }
148 } else {
149 info = -1;
150 LAPACKE_xerbla( "LAPACKE_sgbbrd_work", info );
151 }
152 return info;
153}
#define lapack_int
Definition lapack.h:83
#define LAPACK_sgbbrd(...)
Definition lapack.h:524
#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_sgbbrd_work(int matrix_layout, char vect, lapack_int m, lapack_int n, lapack_int ncc, lapack_int kl, lapack_int ku, float *ab, lapack_int ldab, float *d, float *e, float *q, lapack_int ldq, float *pt, lapack_int ldpt, float *c, lapack_int ldc, float *work)
lapack_logical LAPACKE_lsame(char ca, char cb)
void LAPACKE_xerbla(const char *name, lapack_int info)
void LAPACKE_sge_trans(int matrix_layout, lapack_int m, lapack_int n, const float *in, lapack_int ldin, float *out, lapack_int ldout)
void LAPACKE_sgb_trans(int matrix_layout, lapack_int m, lapack_int n, lapack_int kl, lapack_int ku, const float *in, lapack_int ldin, float *out, lapack_int ldout)
#define MAX(x, y)
n