nmatrix-lapacke 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/ext/nmatrix/data/complex.h +364 -0
- data/ext/nmatrix/data/data.h +638 -0
- data/ext/nmatrix/data/meta.h +64 -0
- data/ext/nmatrix/data/ruby_object.h +389 -0
- data/ext/nmatrix/math/asum.h +120 -0
- data/ext/nmatrix/math/cblas_enums.h +36 -0
- data/ext/nmatrix/math/cblas_templates_core.h +507 -0
- data/ext/nmatrix/math/gemm.h +241 -0
- data/ext/nmatrix/math/gemv.h +178 -0
- data/ext/nmatrix/math/getrf.h +255 -0
- data/ext/nmatrix/math/getrs.h +121 -0
- data/ext/nmatrix/math/imax.h +79 -0
- data/ext/nmatrix/math/laswp.h +165 -0
- data/ext/nmatrix/math/long_dtype.h +49 -0
- data/ext/nmatrix/math/math.h +744 -0
- data/ext/nmatrix/math/nrm2.h +160 -0
- data/ext/nmatrix/math/rot.h +117 -0
- data/ext/nmatrix/math/rotg.h +106 -0
- data/ext/nmatrix/math/scal.h +71 -0
- data/ext/nmatrix/math/trsm.h +332 -0
- data/ext/nmatrix/math/util.h +148 -0
- data/ext/nmatrix/nm_memory.h +60 -0
- data/ext/nmatrix/nmatrix.h +408 -0
- data/ext/nmatrix/ruby_constants.h +106 -0
- data/ext/nmatrix/storage/common.h +176 -0
- data/ext/nmatrix/storage/dense/dense.h +128 -0
- data/ext/nmatrix/storage/list/list.h +137 -0
- data/ext/nmatrix/storage/storage.h +98 -0
- data/ext/nmatrix/storage/yale/class.h +1139 -0
- data/ext/nmatrix/storage/yale/iterators/base.h +142 -0
- data/ext/nmatrix/storage/yale/iterators/iterator.h +130 -0
- data/ext/nmatrix/storage/yale/iterators/row.h +449 -0
- data/ext/nmatrix/storage/yale/iterators/row_stored.h +139 -0
- data/ext/nmatrix/storage/yale/iterators/row_stored_nd.h +168 -0
- data/ext/nmatrix/storage/yale/iterators/stored_diagonal.h +123 -0
- data/ext/nmatrix/storage/yale/math/transpose.h +110 -0
- data/ext/nmatrix/storage/yale/yale.h +202 -0
- data/ext/nmatrix/types.h +54 -0
- data/ext/nmatrix/util/io.h +115 -0
- data/ext/nmatrix/util/sl_list.h +143 -0
- data/ext/nmatrix/util/util.h +78 -0
- data/ext/nmatrix_lapacke/extconf.rb +200 -0
- data/ext/nmatrix_lapacke/lapacke.cpp +100 -0
- data/ext/nmatrix_lapacke/lapacke/include/lapacke.h +16445 -0
- data/ext/nmatrix_lapacke/lapacke/include/lapacke_config.h +119 -0
- data/ext/nmatrix_lapacke/lapacke/include/lapacke_mangling.h +17 -0
- data/ext/nmatrix_lapacke/lapacke/include/lapacke_mangling_with_flags.h +17 -0
- data/ext/nmatrix_lapacke/lapacke/include/lapacke_utils.h +579 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_cgeev.c +89 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_cgeev_work.c +141 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_cgesdd.c +106 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_cgesdd_work.c +158 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_cgesvd.c +94 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_cgesvd_work.c +149 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_cgetrf.c +51 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_cgetrf_work.c +83 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_cgetri.c +77 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_cgetri_work.c +89 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_cgetrs.c +56 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_cgetrs_work.c +102 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_cpotrf.c +50 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_cpotrf_work.c +82 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_cpotri.c +50 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_cpotri_work.c +82 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_cpotrs.c +55 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_cpotrs_work.c +101 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_dgeev.c +78 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_dgeev_work.c +136 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_dgesdd.c +88 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_dgesdd_work.c +153 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_dgesvd.c +83 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_dgesvd_work.c +144 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_dgetrf.c +50 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_dgetrf_work.c +81 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_dgetri.c +75 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_dgetri_work.c +87 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_dgetrs.c +55 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_dgetrs_work.c +99 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_dpotrf.c +50 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_dpotrf_work.c +81 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_dpotri.c +50 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_dpotri_work.c +81 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_dpotrs.c +54 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_dpotrs_work.c +97 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_sgeev.c +78 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_sgeev_work.c +134 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_sgesdd.c +88 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_sgesdd_work.c +152 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_sgesvd.c +83 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_sgesvd_work.c +143 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_sgetrf.c +50 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_sgetrf_work.c +81 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_sgetri.c +75 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_sgetri_work.c +87 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_sgetrs.c +55 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_sgetrs_work.c +99 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_spotrf.c +50 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_spotrf_work.c +81 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_spotri.c +50 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_spotri_work.c +81 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_spotrs.c +54 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_spotrs_work.c +97 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_zgeev.c +89 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_zgeev_work.c +141 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_zgesdd.c +106 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_zgesdd_work.c +158 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_zgesvd.c +94 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_zgesvd_work.c +149 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_zgetrf.c +51 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_zgetrf_work.c +83 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_zgetri.c +77 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_zgetri_work.c +89 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_zgetrs.c +56 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_zgetrs_work.c +102 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_zpotrf.c +50 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_zpotrf_work.c +82 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_zpotri.c +50 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_zpotri_work.c +82 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_zpotrs.c +55 -0
- data/ext/nmatrix_lapacke/lapacke/src/lapacke_zpotrs_work.c +101 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_cge_nancheck.c +62 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_cge_trans.c +65 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_cpo_nancheck.c +43 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_cpo_trans.c +45 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_ctr_nancheck.c +85 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_ctr_trans.c +85 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_dge_nancheck.c +62 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_dge_trans.c +65 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_dpo_nancheck.c +43 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_dpo_trans.c +45 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_dtr_nancheck.c +85 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_dtr_trans.c +85 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_lsame.c +41 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_sge_nancheck.c +62 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_sge_trans.c +65 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_spo_nancheck.c +43 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_spo_trans.c +45 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_str_nancheck.c +85 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_str_trans.c +85 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_xerbla.c +46 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_zge_nancheck.c +62 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_zge_trans.c +65 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_zpo_nancheck.c +43 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_zpo_trans.c +45 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_ztr_nancheck.c +85 -0
- data/ext/nmatrix_lapacke/lapacke/utils/lapacke_ztr_trans.c +85 -0
- data/ext/nmatrix_lapacke/lapacke_nmatrix.h +16 -0
- data/ext/nmatrix_lapacke/make_lapacke_cpp.rb +9 -0
- data/ext/nmatrix_lapacke/math_lapacke.cpp +967 -0
- data/ext/nmatrix_lapacke/math_lapacke/cblas_local.h +576 -0
- data/ext/nmatrix_lapacke/math_lapacke/cblas_templates_lapacke.h +51 -0
- data/ext/nmatrix_lapacke/math_lapacke/lapacke_templates.h +356 -0
- data/ext/nmatrix_lapacke/nmatrix_lapacke.cpp +42 -0
- data/lib/nmatrix/lapack_ext_common.rb +69 -0
- data/lib/nmatrix/lapacke.rb +213 -0
- data/spec/00_nmatrix_spec.rb +730 -0
- data/spec/01_enum_spec.rb +190 -0
- data/spec/02_slice_spec.rb +389 -0
- data/spec/03_nmatrix_monkeys_spec.rb +78 -0
- data/spec/2x2_dense_double.mat +0 -0
- data/spec/4x4_sparse.mat +0 -0
- data/spec/4x5_dense.mat +0 -0
- data/spec/blas_spec.rb +193 -0
- data/spec/elementwise_spec.rb +303 -0
- data/spec/homogeneous_spec.rb +99 -0
- data/spec/io/fortran_format_spec.rb +88 -0
- data/spec/io/harwell_boeing_spec.rb +98 -0
- data/spec/io/test.rua +9 -0
- data/spec/io_spec.rb +149 -0
- data/spec/lapack_core_spec.rb +482 -0
- data/spec/leakcheck.rb +16 -0
- data/spec/math_spec.rb +730 -0
- data/spec/nmatrix_yale_resize_test_associations.yaml +2802 -0
- data/spec/nmatrix_yale_spec.rb +286 -0
- data/spec/plugins/lapacke/lapacke_spec.rb +303 -0
- data/spec/rspec_monkeys.rb +56 -0
- data/spec/rspec_spec.rb +34 -0
- data/spec/shortcuts_spec.rb +310 -0
- data/spec/slice_set_spec.rb +157 -0
- data/spec/spec_helper.rb +140 -0
- data/spec/stat_spec.rb +203 -0
- data/spec/test.pcd +20 -0
- data/spec/utm5940.mtx +83844 -0
- metadata +262 -0
@@ -0,0 +1,94 @@
|
|
1
|
+
/*****************************************************************************
|
2
|
+
Copyright (c) 2011, 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 cgesvd
|
30
|
+
* Author: Intel Corporation
|
31
|
+
* Generated November, 2011
|
32
|
+
*****************************************************************************/
|
33
|
+
|
34
|
+
#include "lapacke_utils.h"
|
35
|
+
|
36
|
+
lapack_int LAPACKE_cgesvd( int matrix_order, char jobu, char jobvt,
|
37
|
+
lapack_int m, lapack_int n, lapack_complex_float* a,
|
38
|
+
lapack_int lda, float* s, lapack_complex_float* u,
|
39
|
+
lapack_int ldu, lapack_complex_float* vt,
|
40
|
+
lapack_int ldvt, float* superb )
|
41
|
+
{
|
42
|
+
lapack_int info = 0;
|
43
|
+
lapack_int lwork = -1;
|
44
|
+
float* rwork = NULL;
|
45
|
+
lapack_complex_float* work = NULL;
|
46
|
+
lapack_complex_float work_query;
|
47
|
+
lapack_int i;
|
48
|
+
if( matrix_order != LAPACK_COL_MAJOR && matrix_order != LAPACK_ROW_MAJOR ) {
|
49
|
+
LAPACKE_xerbla( "LAPACKE_cgesvd", -1 );
|
50
|
+
return -1;
|
51
|
+
}
|
52
|
+
#ifndef LAPACK_DISABLE_NAN_CHECK
|
53
|
+
/* Optionally check input matrices for NaNs */
|
54
|
+
if( LAPACKE_cge_nancheck( matrix_order, m, n, a, lda ) ) {
|
55
|
+
return -6;
|
56
|
+
}
|
57
|
+
#endif
|
58
|
+
/* Allocate memory for working array(s) */
|
59
|
+
rwork = (float*)LAPACKE_malloc( sizeof(float) * MAX(1,5*MIN(m,n)) );
|
60
|
+
if( rwork == NULL ) {
|
61
|
+
info = LAPACK_WORK_MEMORY_ERROR;
|
62
|
+
goto exit_level_0;
|
63
|
+
}
|
64
|
+
/* Query optimal working array(s) size */
|
65
|
+
info = LAPACKE_cgesvd_work( matrix_order, jobu, jobvt, m, n, a, lda, s, u,
|
66
|
+
ldu, vt, ldvt, &work_query, lwork, rwork );
|
67
|
+
if( info != 0 ) {
|
68
|
+
goto exit_level_1;
|
69
|
+
}
|
70
|
+
lwork = LAPACK_C2INT( work_query );
|
71
|
+
/* Allocate memory for work arrays */
|
72
|
+
work = (lapack_complex_float*)
|
73
|
+
LAPACKE_malloc( sizeof(lapack_complex_float) * lwork );
|
74
|
+
if( work == NULL ) {
|
75
|
+
info = LAPACK_WORK_MEMORY_ERROR;
|
76
|
+
goto exit_level_1;
|
77
|
+
}
|
78
|
+
/* Call middle-level interface */
|
79
|
+
info = LAPACKE_cgesvd_work( matrix_order, jobu, jobvt, m, n, a, lda, s, u,
|
80
|
+
ldu, vt, ldvt, work, lwork, rwork );
|
81
|
+
/* Backup significant data from working array(s) */
|
82
|
+
for( i=0; i<MIN(m,n)-1; i++ ) {
|
83
|
+
superb[i] = rwork[i];
|
84
|
+
}
|
85
|
+
/* Release memory and exit */
|
86
|
+
LAPACKE_free( work );
|
87
|
+
exit_level_1:
|
88
|
+
LAPACKE_free( rwork );
|
89
|
+
exit_level_0:
|
90
|
+
if( info == LAPACK_WORK_MEMORY_ERROR ) {
|
91
|
+
LAPACKE_xerbla( "LAPACKE_cgesvd", info );
|
92
|
+
}
|
93
|
+
return info;
|
94
|
+
}
|
@@ -0,0 +1,149 @@
|
|
1
|
+
/*****************************************************************************
|
2
|
+
Copyright (c) 2011, 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 cgesvd
|
30
|
+
* Author: Intel Corporation
|
31
|
+
* Generated November, 2011
|
32
|
+
*****************************************************************************/
|
33
|
+
|
34
|
+
#include "lapacke_utils.h"
|
35
|
+
|
36
|
+
lapack_int LAPACKE_cgesvd_work( int matrix_order, char jobu, char jobvt,
|
37
|
+
lapack_int m, lapack_int n,
|
38
|
+
lapack_complex_float* a, lapack_int lda,
|
39
|
+
float* s, lapack_complex_float* u,
|
40
|
+
lapack_int ldu, lapack_complex_float* vt,
|
41
|
+
lapack_int ldvt, lapack_complex_float* work,
|
42
|
+
lapack_int lwork, float* rwork )
|
43
|
+
{
|
44
|
+
lapack_int info = 0;
|
45
|
+
if( matrix_order == LAPACK_COL_MAJOR ) {
|
46
|
+
/* Call LAPACK function and adjust info */
|
47
|
+
LAPACK_cgesvd( &jobu, &jobvt, &m, &n, a, &lda, s, u, &ldu, vt, &ldvt,
|
48
|
+
work, &lwork, rwork, &info );
|
49
|
+
if( info < 0 ) {
|
50
|
+
info = info - 1;
|
51
|
+
}
|
52
|
+
} else if( matrix_order == LAPACK_ROW_MAJOR ) {
|
53
|
+
lapack_int nrows_u = ( LAPACKE_lsame( jobu, 'a' ) ||
|
54
|
+
LAPACKE_lsame( jobu, 's' ) ) ? m : 1;
|
55
|
+
lapack_int ncols_u = LAPACKE_lsame( jobu, 'a' ) ? m :
|
56
|
+
( LAPACKE_lsame( jobu, 's' ) ? MIN(m,n) : 1);
|
57
|
+
lapack_int nrows_vt = LAPACKE_lsame( jobvt, 'a' ) ? n :
|
58
|
+
( LAPACKE_lsame( jobvt, '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
|
+
lapack_complex_float* a_t = NULL;
|
63
|
+
lapack_complex_float* u_t = NULL;
|
64
|
+
lapack_complex_float* vt_t = NULL;
|
65
|
+
/* Check leading dimension(s) */
|
66
|
+
if( lda < n ) {
|
67
|
+
info = -7;
|
68
|
+
LAPACKE_xerbla( "LAPACKE_cgesvd_work", info );
|
69
|
+
return info;
|
70
|
+
}
|
71
|
+
if( ldu < ncols_u ) {
|
72
|
+
info = -10;
|
73
|
+
LAPACKE_xerbla( "LAPACKE_cgesvd_work", info );
|
74
|
+
return info;
|
75
|
+
}
|
76
|
+
if( ldvt < n ) {
|
77
|
+
info = -12;
|
78
|
+
LAPACKE_xerbla( "LAPACKE_cgesvd_work", info );
|
79
|
+
return info;
|
80
|
+
}
|
81
|
+
/* Query optimal working array(s) size if requested */
|
82
|
+
if( lwork == -1 ) {
|
83
|
+
LAPACK_cgesvd( &jobu, &jobvt, &m, &n, a, &lda_t, s, u, &ldu_t, vt,
|
84
|
+
&ldvt_t, work, &lwork, rwork, &info );
|
85
|
+
return (info < 0) ? (info - 1) : info;
|
86
|
+
}
|
87
|
+
/* Allocate memory for temporary array(s) */
|
88
|
+
a_t = (lapack_complex_float*)
|
89
|
+
LAPACKE_malloc( sizeof(lapack_complex_float) * lda_t * MAX(1,n) );
|
90
|
+
if( a_t == NULL ) {
|
91
|
+
info = LAPACK_TRANSPOSE_MEMORY_ERROR;
|
92
|
+
goto exit_level_0;
|
93
|
+
}
|
94
|
+
if( LAPACKE_lsame( jobu, 'a' ) || LAPACKE_lsame( jobu, 's' ) ) {
|
95
|
+
u_t = (lapack_complex_float*)
|
96
|
+
LAPACKE_malloc( sizeof(lapack_complex_float) *
|
97
|
+
ldu_t * MAX(1,ncols_u) );
|
98
|
+
if( u_t == NULL ) {
|
99
|
+
info = LAPACK_TRANSPOSE_MEMORY_ERROR;
|
100
|
+
goto exit_level_1;
|
101
|
+
}
|
102
|
+
}
|
103
|
+
if( LAPACKE_lsame( jobvt, 'a' ) || LAPACKE_lsame( jobvt, 's' ) ) {
|
104
|
+
vt_t = (lapack_complex_float*)
|
105
|
+
LAPACKE_malloc( sizeof(lapack_complex_float) *
|
106
|
+
ldvt_t * MAX(1,n) );
|
107
|
+
if( vt_t == NULL ) {
|
108
|
+
info = LAPACK_TRANSPOSE_MEMORY_ERROR;
|
109
|
+
goto exit_level_2;
|
110
|
+
}
|
111
|
+
}
|
112
|
+
/* Transpose input matrices */
|
113
|
+
LAPACKE_cge_trans( matrix_order, m, n, a, lda, a_t, lda_t );
|
114
|
+
/* Call LAPACK function and adjust info */
|
115
|
+
LAPACK_cgesvd( &jobu, &jobvt, &m, &n, a_t, &lda_t, s, u_t, &ldu_t, vt_t,
|
116
|
+
&ldvt_t, work, &lwork, rwork, &info );
|
117
|
+
if( info < 0 ) {
|
118
|
+
info = info - 1;
|
119
|
+
}
|
120
|
+
/* Transpose output matrices */
|
121
|
+
LAPACKE_cge_trans( LAPACK_COL_MAJOR, m, n, a_t, lda_t, a, lda );
|
122
|
+
if( LAPACKE_lsame( jobu, 'a' ) || LAPACKE_lsame( jobu, 's' ) ) {
|
123
|
+
LAPACKE_cge_trans( LAPACK_COL_MAJOR, nrows_u, ncols_u, u_t, ldu_t,
|
124
|
+
u, ldu );
|
125
|
+
}
|
126
|
+
if( LAPACKE_lsame( jobvt, 'a' ) || LAPACKE_lsame( jobvt, 's' ) ) {
|
127
|
+
LAPACKE_cge_trans( LAPACK_COL_MAJOR, nrows_vt, n, vt_t, ldvt_t, vt,
|
128
|
+
ldvt );
|
129
|
+
}
|
130
|
+
/* Release memory and exit */
|
131
|
+
if( LAPACKE_lsame( jobvt, 'a' ) || LAPACKE_lsame( jobvt, 's' ) ) {
|
132
|
+
LAPACKE_free( vt_t );
|
133
|
+
}
|
134
|
+
exit_level_2:
|
135
|
+
if( LAPACKE_lsame( jobu, 'a' ) || LAPACKE_lsame( jobu, 's' ) ) {
|
136
|
+
LAPACKE_free( u_t );
|
137
|
+
}
|
138
|
+
exit_level_1:
|
139
|
+
LAPACKE_free( a_t );
|
140
|
+
exit_level_0:
|
141
|
+
if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
|
142
|
+
LAPACKE_xerbla( "LAPACKE_cgesvd_work", info );
|
143
|
+
}
|
144
|
+
} else {
|
145
|
+
info = -1;
|
146
|
+
LAPACKE_xerbla( "LAPACKE_cgesvd_work", info );
|
147
|
+
}
|
148
|
+
return info;
|
149
|
+
}
|
@@ -0,0 +1,51 @@
|
|
1
|
+
/*****************************************************************************
|
2
|
+
Copyright (c) 2011, 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 cgetrf
|
30
|
+
* Author: Intel Corporation
|
31
|
+
* Generated November, 2011
|
32
|
+
*****************************************************************************/
|
33
|
+
|
34
|
+
#include "lapacke_utils.h"
|
35
|
+
|
36
|
+
lapack_int LAPACKE_cgetrf( int matrix_order, lapack_int m, lapack_int n,
|
37
|
+
lapack_complex_float* a, lapack_int lda,
|
38
|
+
lapack_int* ipiv )
|
39
|
+
{
|
40
|
+
if( matrix_order != LAPACK_COL_MAJOR && matrix_order != LAPACK_ROW_MAJOR ) {
|
41
|
+
LAPACKE_xerbla( "LAPACKE_cgetrf", -1 );
|
42
|
+
return -1;
|
43
|
+
}
|
44
|
+
#ifndef LAPACK_DISABLE_NAN_CHECK
|
45
|
+
/* Optionally check input matrices for NaNs */
|
46
|
+
if( LAPACKE_cge_nancheck( matrix_order, m, n, a, lda ) ) {
|
47
|
+
return -4;
|
48
|
+
}
|
49
|
+
#endif
|
50
|
+
return LAPACKE_cgetrf_work( matrix_order, m, n, a, lda, ipiv );
|
51
|
+
}
|
@@ -0,0 +1,83 @@
|
|
1
|
+
/*****************************************************************************
|
2
|
+
Copyright (c) 2011, 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 cgetrf
|
30
|
+
* Author: Intel Corporation
|
31
|
+
* Generated November, 2011
|
32
|
+
*****************************************************************************/
|
33
|
+
|
34
|
+
#include "lapacke_utils.h"
|
35
|
+
|
36
|
+
lapack_int LAPACKE_cgetrf_work( int matrix_order, lapack_int m, lapack_int n,
|
37
|
+
lapack_complex_float* a, lapack_int lda,
|
38
|
+
lapack_int* ipiv )
|
39
|
+
{
|
40
|
+
lapack_int info = 0;
|
41
|
+
if( matrix_order == LAPACK_COL_MAJOR ) {
|
42
|
+
/* Call LAPACK function and adjust info */
|
43
|
+
LAPACK_cgetrf( &m, &n, a, &lda, ipiv, &info );
|
44
|
+
if( info < 0 ) {
|
45
|
+
info = info - 1;
|
46
|
+
}
|
47
|
+
} else if( matrix_order == LAPACK_ROW_MAJOR ) {
|
48
|
+
lapack_int lda_t = MAX(1,m);
|
49
|
+
lapack_complex_float* a_t = NULL;
|
50
|
+
/* Check leading dimension(s) */
|
51
|
+
if( lda < n ) {
|
52
|
+
info = -5;
|
53
|
+
LAPACKE_xerbla( "LAPACKE_cgetrf_work", info );
|
54
|
+
return info;
|
55
|
+
}
|
56
|
+
/* Allocate memory for temporary array(s) */
|
57
|
+
a_t = (lapack_complex_float*)
|
58
|
+
LAPACKE_malloc( sizeof(lapack_complex_float) * lda_t * MAX(1,n) );
|
59
|
+
if( a_t == NULL ) {
|
60
|
+
info = LAPACK_TRANSPOSE_MEMORY_ERROR;
|
61
|
+
goto exit_level_0;
|
62
|
+
}
|
63
|
+
/* Transpose input matrices */
|
64
|
+
LAPACKE_cge_trans( matrix_order, m, n, a, lda, a_t, lda_t );
|
65
|
+
/* Call LAPACK function and adjust info */
|
66
|
+
LAPACK_cgetrf( &m, &n, a_t, &lda_t, ipiv, &info );
|
67
|
+
if( info < 0 ) {
|
68
|
+
info = info - 1;
|
69
|
+
}
|
70
|
+
/* Transpose output matrices */
|
71
|
+
LAPACKE_cge_trans( LAPACK_COL_MAJOR, m, n, a_t, lda_t, a, lda );
|
72
|
+
/* Release memory and exit */
|
73
|
+
LAPACKE_free( a_t );
|
74
|
+
exit_level_0:
|
75
|
+
if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
|
76
|
+
LAPACKE_xerbla( "LAPACKE_cgetrf_work", info );
|
77
|
+
}
|
78
|
+
} else {
|
79
|
+
info = -1;
|
80
|
+
LAPACKE_xerbla( "LAPACKE_cgetrf_work", info );
|
81
|
+
}
|
82
|
+
return info;
|
83
|
+
}
|
@@ -0,0 +1,77 @@
|
|
1
|
+
/*****************************************************************************
|
2
|
+
Copyright (c) 2011, 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 cgetri
|
30
|
+
* Author: Intel Corporation
|
31
|
+
* Generated November, 2011
|
32
|
+
*****************************************************************************/
|
33
|
+
|
34
|
+
#include "lapacke_utils.h"
|
35
|
+
|
36
|
+
lapack_int LAPACKE_cgetri( int matrix_order, lapack_int n,
|
37
|
+
lapack_complex_float* a, lapack_int lda,
|
38
|
+
const lapack_int* ipiv )
|
39
|
+
{
|
40
|
+
lapack_int info = 0;
|
41
|
+
lapack_int lwork = -1;
|
42
|
+
lapack_complex_float* work = NULL;
|
43
|
+
lapack_complex_float work_query;
|
44
|
+
if( matrix_order != LAPACK_COL_MAJOR && matrix_order != LAPACK_ROW_MAJOR ) {
|
45
|
+
LAPACKE_xerbla( "LAPACKE_cgetri", -1 );
|
46
|
+
return -1;
|
47
|
+
}
|
48
|
+
#ifndef LAPACK_DISABLE_NAN_CHECK
|
49
|
+
/* Optionally check input matrices for NaNs */
|
50
|
+
if( LAPACKE_cge_nancheck( matrix_order, n, n, a, lda ) ) {
|
51
|
+
return -3;
|
52
|
+
}
|
53
|
+
#endif
|
54
|
+
/* Query optimal working array(s) size */
|
55
|
+
info = LAPACKE_cgetri_work( matrix_order, n, a, lda, ipiv, &work_query,
|
56
|
+
lwork );
|
57
|
+
if( info != 0 ) {
|
58
|
+
goto exit_level_0;
|
59
|
+
}
|
60
|
+
lwork = LAPACK_C2INT( work_query );
|
61
|
+
/* Allocate memory for work arrays */
|
62
|
+
work = (lapack_complex_float*)
|
63
|
+
LAPACKE_malloc( sizeof(lapack_complex_float) * lwork );
|
64
|
+
if( work == NULL ) {
|
65
|
+
info = LAPACK_WORK_MEMORY_ERROR;
|
66
|
+
goto exit_level_0;
|
67
|
+
}
|
68
|
+
/* Call middle-level interface */
|
69
|
+
info = LAPACKE_cgetri_work( matrix_order, n, a, lda, ipiv, work, lwork );
|
70
|
+
/* Release memory and exit */
|
71
|
+
LAPACKE_free( work );
|
72
|
+
exit_level_0:
|
73
|
+
if( info == LAPACK_WORK_MEMORY_ERROR ) {
|
74
|
+
LAPACKE_xerbla( "LAPACKE_cgetri", info );
|
75
|
+
}
|
76
|
+
return info;
|
77
|
+
}
|