nmatrix-lapacke 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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,65 @@
|
|
|
1
|
+
/*****************************************************************************
|
|
2
|
+
Copyright (c) 2010, 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 C interface to LAPACK utility function
|
|
30
|
+
* Author: Intel Corporation
|
|
31
|
+
* Created in February, 2010
|
|
32
|
+
*****************************************************************************/
|
|
33
|
+
|
|
34
|
+
#include "lapacke_utils.h"
|
|
35
|
+
|
|
36
|
+
/* Converts input general matrix from row-major(C) to column-major(Fortran)
|
|
37
|
+
* layout or vice versa.
|
|
38
|
+
*/
|
|
39
|
+
|
|
40
|
+
void LAPACKE_sge_trans( int matrix_order, lapack_int m, lapack_int n,
|
|
41
|
+
const float* in, lapack_int ldin,
|
|
42
|
+
float* out, lapack_int ldout )
|
|
43
|
+
{
|
|
44
|
+
lapack_int i, j, x, y;
|
|
45
|
+
|
|
46
|
+
if( in == NULL || out == NULL ) return;
|
|
47
|
+
|
|
48
|
+
if( matrix_order == LAPACK_COL_MAJOR ) {
|
|
49
|
+
x = n;
|
|
50
|
+
y = m;
|
|
51
|
+
} else if ( matrix_order == LAPACK_ROW_MAJOR ) {
|
|
52
|
+
x = m;
|
|
53
|
+
y = n;
|
|
54
|
+
} else {
|
|
55
|
+
/* Unknown input layout */
|
|
56
|
+
return;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/* In case of incorrect m, n, ldin or ldout the function does nothing */
|
|
60
|
+
for( i = 0; i < MIN( y, ldin ); i++ ) {
|
|
61
|
+
for( j = 0; j < MIN( x, ldout ); j++ ) {
|
|
62
|
+
out[ (size_t)i*ldout + j ] = in[ (size_t)j*ldin + i ];
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/*****************************************************************************
|
|
2
|
+
Copyright (c) 2010, 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 C interface to LAPACK utility function
|
|
30
|
+
* Author: Intel Corporation
|
|
31
|
+
* Created in February, 2010
|
|
32
|
+
*****************************************************************************/
|
|
33
|
+
#include "lapacke_utils.h"
|
|
34
|
+
|
|
35
|
+
/* Check a matrix for NaN entries. */
|
|
36
|
+
|
|
37
|
+
lapack_logical LAPACKE_spo_nancheck( int matrix_order, char uplo,
|
|
38
|
+
lapack_int n,
|
|
39
|
+
const float *a,
|
|
40
|
+
lapack_int lda )
|
|
41
|
+
{
|
|
42
|
+
return LAPACKE_str_nancheck( matrix_order, uplo, 'n', n, a, lda );
|
|
43
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/*****************************************************************************
|
|
2
|
+
Copyright (c) 2010, 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 C interface to LAPACK utility function
|
|
30
|
+
* Author: Intel Corporation
|
|
31
|
+
* Created in February, 2010
|
|
32
|
+
*****************************************************************************/
|
|
33
|
+
|
|
34
|
+
#include "lapacke_utils.h"
|
|
35
|
+
|
|
36
|
+
/* Converts input symmetric matrix from row-major(C) to column-major(Fortran)
|
|
37
|
+
* layout or vice versa.
|
|
38
|
+
*/
|
|
39
|
+
|
|
40
|
+
void LAPACKE_spo_trans( int matrix_order, char uplo, lapack_int n,
|
|
41
|
+
const float *in, lapack_int ldin,
|
|
42
|
+
float *out, lapack_int ldout )
|
|
43
|
+
{
|
|
44
|
+
LAPACKE_str_trans( matrix_order, uplo, 'n', n, in, ldin, out, ldout );
|
|
45
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
/*****************************************************************************
|
|
2
|
+
Copyright (c) 2010, 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 C interface to LAPACK utility function
|
|
30
|
+
* Author: Intel Corporation
|
|
31
|
+
* Created in February, 2010
|
|
32
|
+
*****************************************************************************/
|
|
33
|
+
#include "lapacke_utils.h"
|
|
34
|
+
|
|
35
|
+
/* Check a matrix for NaN entries. */
|
|
36
|
+
|
|
37
|
+
lapack_logical LAPACKE_str_nancheck( int matrix_order, char uplo, char diag,
|
|
38
|
+
lapack_int n,
|
|
39
|
+
const float *a,
|
|
40
|
+
lapack_int lda )
|
|
41
|
+
{
|
|
42
|
+
lapack_int i, j, st;
|
|
43
|
+
lapack_logical colmaj, lower, unit;
|
|
44
|
+
|
|
45
|
+
if( a == NULL ) return (lapack_logical) 0;
|
|
46
|
+
|
|
47
|
+
colmaj = ( matrix_order == LAPACK_COL_MAJOR );
|
|
48
|
+
lower = LAPACKE_lsame( uplo, 'l' );
|
|
49
|
+
unit = LAPACKE_lsame( diag, 'u' );
|
|
50
|
+
|
|
51
|
+
if( ( !colmaj && ( matrix_order != LAPACK_ROW_MAJOR ) ) ||
|
|
52
|
+
( !lower && !LAPACKE_lsame( uplo, 'u' ) ) ||
|
|
53
|
+
( !unit && !LAPACKE_lsame( diag, 'n' ) ) ) {
|
|
54
|
+
/* Just exit if any of input parameters are wrong */
|
|
55
|
+
return (lapack_logical) 0;
|
|
56
|
+
}
|
|
57
|
+
if( unit ) {
|
|
58
|
+
/* If unit, then don't touch diagonal, start from 1st column or row */
|
|
59
|
+
st = 1;
|
|
60
|
+
} else {
|
|
61
|
+
/* If non-unit, then check diagonal also, starting from [0,0] */
|
|
62
|
+
st = 0;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
/* Since col_major upper and row_major lower are equal,
|
|
66
|
+
* and col_major lower and row_major upper are equals too -
|
|
67
|
+
* using one code for equal cases. XOR( colmaj, upper )
|
|
68
|
+
*/
|
|
69
|
+
if( ( colmaj || lower ) && !( colmaj && lower ) ) {
|
|
70
|
+
for( j = st; j < n; j++ ) {
|
|
71
|
+
for( i = 0; i < MIN( j+1-st, lda ); i++ ) {
|
|
72
|
+
if( LAPACK_SISNAN( a[i+j*lda] ) )
|
|
73
|
+
return (lapack_logical) 1;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
} else {
|
|
77
|
+
for( j = 0; j < n-st; j++ ) {
|
|
78
|
+
for( i = j+st; i < MIN( n, lda ); i++ ) {
|
|
79
|
+
if( LAPACK_SISNAN( a[i+j*lda] ) )
|
|
80
|
+
return (lapack_logical) 1;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
return (lapack_logical) 0;
|
|
85
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
/*****************************************************************************
|
|
2
|
+
Copyright (c) 2010, 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 C interface to LAPACK utility function
|
|
30
|
+
* Author: Intel Corporation
|
|
31
|
+
* Created in February, 2010
|
|
32
|
+
*****************************************************************************/
|
|
33
|
+
|
|
34
|
+
#include "lapacke_utils.h"
|
|
35
|
+
|
|
36
|
+
/* Converts input triangular matrix from row-major(C) to column-major(Fortran)
|
|
37
|
+
* layout or vice versa.
|
|
38
|
+
*/
|
|
39
|
+
|
|
40
|
+
void LAPACKE_str_trans( int matrix_order, char uplo, char diag, lapack_int n,
|
|
41
|
+
const float *in, lapack_int ldin,
|
|
42
|
+
float *out, lapack_int ldout )
|
|
43
|
+
{
|
|
44
|
+
lapack_int i, j, st;
|
|
45
|
+
lapack_logical colmaj, lower, unit;
|
|
46
|
+
|
|
47
|
+
if( in == NULL || out == NULL ) return ;
|
|
48
|
+
|
|
49
|
+
colmaj = ( matrix_order == LAPACK_COL_MAJOR );
|
|
50
|
+
lower = LAPACKE_lsame( uplo, 'l' );
|
|
51
|
+
unit = LAPACKE_lsame( diag, 'u' );
|
|
52
|
+
|
|
53
|
+
if( ( !colmaj && ( matrix_order != LAPACK_ROW_MAJOR ) ) ||
|
|
54
|
+
( !lower && !LAPACKE_lsame( uplo, 'u' ) ) ||
|
|
55
|
+
( !unit && !LAPACKE_lsame( diag, 'n' ) ) ) {
|
|
56
|
+
/* Just exit if any of input parameters are wrong */
|
|
57
|
+
return;
|
|
58
|
+
}
|
|
59
|
+
if( unit ) {
|
|
60
|
+
/* If unit, then don't touch diagonal, start from 1st column or row */
|
|
61
|
+
st = 1;
|
|
62
|
+
} else {
|
|
63
|
+
/* If non-unit, then check diagonal also, starting from [0,0] */
|
|
64
|
+
st = 0;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
/* Perform conversion:
|
|
68
|
+
* Since col_major upper and row_major lower are equal,
|
|
69
|
+
* and col_major lower and row_major upper are equals too -
|
|
70
|
+
* using one code for equal cases. XOR( colmaj, upper )
|
|
71
|
+
*/
|
|
72
|
+
if( ( colmaj || lower ) && !( colmaj && lower ) ) {
|
|
73
|
+
for( j = st; j < MIN( n, ldout ); j++ ) {
|
|
74
|
+
for( i = 0; i < MIN( j+1-st, ldin ); i++ ) {
|
|
75
|
+
out[ j+i*ldout ] = in[ i+j*ldin ];
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
} else {
|
|
79
|
+
for( j = 0; j < MIN( n-st, ldout ); j++ ) {
|
|
80
|
+
for( i = j+st; i < MIN( n, ldin ); i++ ) {
|
|
81
|
+
out[ j+i*ldout ] = in[ i+j*ldin ];
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/*****************************************************************************
|
|
2
|
+
Copyright (c) 2010, 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 C interface to LAPACK lsame
|
|
30
|
+
* Author: Intel Corporation
|
|
31
|
+
* Created in January, 2010
|
|
32
|
+
*****************************************************************************/
|
|
33
|
+
|
|
34
|
+
#include <stdio.h>
|
|
35
|
+
#include "lapacke_utils.h"
|
|
36
|
+
|
|
37
|
+
void LAPACKE_xerbla( const char *name, lapack_int info )
|
|
38
|
+
{
|
|
39
|
+
if( info == LAPACK_WORK_MEMORY_ERROR ) {
|
|
40
|
+
printf( "Not enough memory to allocate work array in %s\n", name );
|
|
41
|
+
} else if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
|
|
42
|
+
printf( "Not enough memory to transpose matrix in %s\n", name );
|
|
43
|
+
} else if( info < 0 ) {
|
|
44
|
+
printf( "Wrong parameter %d in %s\n", -(int) info, name );
|
|
45
|
+
}
|
|
46
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
/*****************************************************************************
|
|
2
|
+
Copyright (c) 2010, 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 C interface to LAPACK utility function
|
|
30
|
+
* Author: Intel Corporation
|
|
31
|
+
* Created in February, 2010
|
|
32
|
+
*****************************************************************************/
|
|
33
|
+
#include "lapacke_utils.h"
|
|
34
|
+
|
|
35
|
+
/* Check a matrix for NaN entries. */
|
|
36
|
+
|
|
37
|
+
lapack_logical LAPACKE_zge_nancheck( int matrix_order, lapack_int m,
|
|
38
|
+
lapack_int n,
|
|
39
|
+
const lapack_complex_double *a,
|
|
40
|
+
lapack_int lda )
|
|
41
|
+
{
|
|
42
|
+
lapack_int i, j;
|
|
43
|
+
|
|
44
|
+
if( a == NULL ) return (lapack_logical) 0;
|
|
45
|
+
|
|
46
|
+
if( matrix_order == LAPACK_COL_MAJOR ) {
|
|
47
|
+
for( j = 0; j < n; j++ ) {
|
|
48
|
+
for( i = 0; i < MIN( m, lda ); i++ ) {
|
|
49
|
+
if( LAPACK_ZISNAN( a[i+(size_t)j*lda] ) )
|
|
50
|
+
return (lapack_logical) 1;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
} else if ( matrix_order == LAPACK_ROW_MAJOR ) {
|
|
54
|
+
for( i = 0; i < m; i++ ) {
|
|
55
|
+
for( j = 0; j < MIN( n, lda ); j++ ) {
|
|
56
|
+
if( LAPACK_ZISNAN( a[(size_t)i*lda+j] ) )
|
|
57
|
+
return (lapack_logical) 1;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
return (lapack_logical) 0;
|
|
62
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/*****************************************************************************
|
|
2
|
+
Copyright (c) 2010, 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 C interface to LAPACK utility function
|
|
30
|
+
* Author: Intel Corporation
|
|
31
|
+
* Created in February, 2010
|
|
32
|
+
*****************************************************************************/
|
|
33
|
+
|
|
34
|
+
#include "lapacke_utils.h"
|
|
35
|
+
|
|
36
|
+
/* Converts input general matrix from row-major(C) to column-major(Fortran)
|
|
37
|
+
* layout or vice versa.
|
|
38
|
+
*/
|
|
39
|
+
|
|
40
|
+
void LAPACKE_zge_trans( int matrix_order, lapack_int m, lapack_int n,
|
|
41
|
+
const lapack_complex_double* in, lapack_int ldin,
|
|
42
|
+
lapack_complex_double* out, lapack_int ldout )
|
|
43
|
+
{
|
|
44
|
+
lapack_int i, j, x, y;
|
|
45
|
+
|
|
46
|
+
if( in == NULL || out == NULL ) return;
|
|
47
|
+
|
|
48
|
+
if( matrix_order == LAPACK_COL_MAJOR ) {
|
|
49
|
+
x = n;
|
|
50
|
+
y = m;
|
|
51
|
+
} else if ( matrix_order == LAPACK_ROW_MAJOR ) {
|
|
52
|
+
x = m;
|
|
53
|
+
y = n;
|
|
54
|
+
} else {
|
|
55
|
+
/* Unknown input layout */
|
|
56
|
+
return;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/* In case of incorrect m, n, ldin or ldout the function does nothing */
|
|
60
|
+
for( i = 0; i < MIN( y, ldin ); i++ ) {
|
|
61
|
+
for( j = 0; j < MIN( x, ldout ); j++ ) {
|
|
62
|
+
out[ (size_t)i*ldout + j ] = in[ (size_t)j*ldin + i ];
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|