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

Go to the source code of this file.

Functions

lapack_int LAPACKE_sggsvd (int matrix_layout, char jobu, char jobv, char jobq, lapack_int m, lapack_int n, lapack_int p, lapack_int *k, lapack_int *l, float *a, lapack_int lda, float *b, lapack_int ldb, float *alpha, float *beta, float *u, lapack_int ldu, float *v, lapack_int ldv, float *q, lapack_int ldq, lapack_int *iwork)

Function Documentation

◆ LAPACKE_sggsvd()

lapack_int LAPACKE_sggsvd ( int matrix_layout,
char jobu,
char jobv,
char jobq,
lapack_int m,
lapack_int n,
lapack_int p,
lapack_int * k,
lapack_int * l,
float * a,
lapack_int lda,
float * b,
lapack_int ldb,
float * alpha,
float * beta,
float * u,
lapack_int ldu,
float * v,
lapack_int ldv,
float * q,
lapack_int ldq,
lapack_int * iwork )

Definition at line 35 of file lapacke_sggsvd.c.

42{
43 lapack_int info = 0;
44 float* work = NULL;
45 if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
46 LAPACKE_xerbla( "LAPACKE_sggsvd", -1 );
47 return -1;
48 }
49#ifndef LAPACK_DISABLE_NAN_CHECK
50 if( LAPACKE_get_nancheck() ) {
51 /* Optionally check input matrices for NaNs */
52 if( LAPACKE_sge_nancheck( matrix_layout, m, n, a, lda ) ) {
53 return -10;
54 }
55 if( LAPACKE_sge_nancheck( matrix_layout, p, n, b, ldb ) ) {
56 return -12;
57 }
58 }
59#endif
60 /* Allocate memory for working array(s) */
61 work = (float*)LAPACKE_malloc( sizeof(float) * MAX(1,MAX3(3*n,m,p)+n) );
62 if( work == NULL ) {
64 goto exit_level_0;
65 }
66 /* Call middle-level interface */
67 info = LAPACKE_sggsvd_work( matrix_layout, jobu, jobv, jobq, m, n, p, k, l,
68 a, lda, b, ldb, alpha, beta, u, ldu, v, ldv, q,
69 ldq, work, iwork );
70 /* Release memory and exit */
71 LAPACKE_free( work );
72exit_level_0:
73 if( info == LAPACK_WORK_MEMORY_ERROR ) {
74 LAPACKE_xerbla( "LAPACKE_sggsvd", info );
75 }
76 return info;
77}
#define alpha
Definition eval.h:35
#define lapack_int
Definition lapack.h:83
#define LAPACK_WORK_MEMORY_ERROR
Definition lapacke.h:55
#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_int LAPACKE_sggsvd_work(int matrix_layout, char jobu, char jobv, char jobq, lapack_int m, lapack_int n, lapack_int p, lapack_int *k, lapack_int *l, float *a, lapack_int lda, float *b, lapack_int ldb, float *alpha, float *beta, float *u, lapack_int ldu, float *v, lapack_int ldv, float *q, lapack_int ldq, float *work, lapack_int *iwork)
void LAPACKE_xerbla(const char *name, lapack_int info)
lapack_logical LAPACKE_sge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const float *a, lapack_int lda)
#define MAX3(x, y, z)
#define MAX(x, y)
n