00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049 #include <stdio.h>
00050 #include "lapacke.h"
00051 #include "lapacke_utils.h"
00052 #include "test_utils.h"
00053
00054 static void init_scalars_zgetrf( lapack_int *m, lapack_int *n,
00055 lapack_int *lda );
00056 static void init_a( lapack_int size, lapack_complex_double *a );
00057 static void init_ipiv( lapack_int size, lapack_int *ipiv );
00058 static int compare_zgetrf( lapack_complex_double *a, lapack_complex_double *a_i,
00059 lapack_int *ipiv, lapack_int *ipiv_i,
00060 lapack_int info, lapack_int info_i, lapack_int lda,
00061 lapack_int m, lapack_int n );
00062
00063 int main(void)
00064 {
00065
00066 lapack_int m, m_i;
00067 lapack_int n, n_i;
00068 lapack_int lda, lda_i;
00069 lapack_int lda_r;
00070 lapack_int info, info_i;
00071 lapack_int i;
00072 int failed;
00073
00074
00075 lapack_complex_double *a = NULL, *a_i = NULL;
00076 lapack_int *ipiv = NULL, *ipiv_i = NULL;
00077 lapack_complex_double *a_save = NULL;
00078 lapack_int *ipiv_save = NULL;
00079 lapack_complex_double *a_r = NULL;
00080
00081
00082 init_scalars_zgetrf( &m, &n, &lda );
00083 lda_r = n+2;
00084 m_i = m;
00085 n_i = n;
00086 lda_i = lda;
00087
00088
00089 a = (lapack_complex_double *)
00090 LAPACKE_malloc( lda*n * sizeof(lapack_complex_double) );
00091 ipiv = (lapack_int *)LAPACKE_malloc( MIN(m,n) * sizeof(lapack_int) );
00092
00093
00094 a_i = (lapack_complex_double *)
00095 LAPACKE_malloc( lda*n * sizeof(lapack_complex_double) );
00096 ipiv_i = (lapack_int *)LAPACKE_malloc( MIN(m,n) * sizeof(lapack_int) );
00097
00098
00099 a_save = (lapack_complex_double *)
00100 LAPACKE_malloc( lda*n * sizeof(lapack_complex_double) );
00101 ipiv_save = (lapack_int *)LAPACKE_malloc( MIN(m,n) * sizeof(lapack_int) );
00102
00103
00104 a_r = (lapack_complex_double *)
00105 LAPACKE_malloc( m*(n+2) * sizeof(lapack_complex_double) );
00106
00107
00108 init_a( lda*n, a );
00109 init_ipiv( (MIN(m,n)), ipiv );
00110
00111
00112 for( i = 0; i < lda*n; i++ ) {
00113 a_save[i] = a[i];
00114 }
00115 for( i = 0; i < (MIN(m,n)); i++ ) {
00116 ipiv_save[i] = ipiv[i];
00117 }
00118
00119
00120 zgetrf_( &m, &n, a, &lda, ipiv, &info );
00121
00122
00123
00124 for( i = 0; i < lda*n; i++ ) {
00125 a_i[i] = a_save[i];
00126 }
00127 for( i = 0; i < (MIN(m,n)); i++ ) {
00128 ipiv_i[i] = ipiv_save[i];
00129 }
00130 info_i = LAPACKE_zgetrf_work( LAPACK_COL_MAJOR, m_i, n_i, a_i, lda_i,
00131 ipiv_i );
00132
00133 failed = compare_zgetrf( a, a_i, ipiv, ipiv_i, info, info_i, lda, m, n );
00134 if( failed == 0 ) {
00135 printf( "PASSED: column-major middle-level interface to zgetrf\n" );
00136 } else {
00137 printf( "FAILED: column-major middle-level interface to zgetrf\n" );
00138 }
00139
00140
00141
00142 for( i = 0; i < lda*n; i++ ) {
00143 a_i[i] = a_save[i];
00144 }
00145 for( i = 0; i < (MIN(m,n)); i++ ) {
00146 ipiv_i[i] = ipiv_save[i];
00147 }
00148 info_i = LAPACKE_zgetrf( LAPACK_COL_MAJOR, m_i, n_i, a_i, lda_i, ipiv_i );
00149
00150 failed = compare_zgetrf( a, a_i, ipiv, ipiv_i, info, info_i, lda, m, n );
00151 if( failed == 0 ) {
00152 printf( "PASSED: column-major high-level interface to zgetrf\n" );
00153 } else {
00154 printf( "FAILED: column-major high-level interface to zgetrf\n" );
00155 }
00156
00157
00158
00159 for( i = 0; i < lda*n; i++ ) {
00160 a_i[i] = a_save[i];
00161 }
00162 for( i = 0; i < (MIN(m,n)); i++ ) {
00163 ipiv_i[i] = ipiv_save[i];
00164 }
00165
00166 LAPACKE_zge_trans( LAPACK_COL_MAJOR, m, n, a_i, lda, a_r, n+2 );
00167 info_i = LAPACKE_zgetrf_work( LAPACK_ROW_MAJOR, m_i, n_i, a_r, lda_r,
00168 ipiv_i );
00169
00170 LAPACKE_zge_trans( LAPACK_ROW_MAJOR, m, n, a_r, n+2, a_i, lda );
00171
00172 failed = compare_zgetrf( a, a_i, ipiv, ipiv_i, info, info_i, lda, m, n );
00173 if( failed == 0 ) {
00174 printf( "PASSED: row-major middle-level interface to zgetrf\n" );
00175 } else {
00176 printf( "FAILED: row-major middle-level interface to zgetrf\n" );
00177 }
00178
00179
00180
00181 for( i = 0; i < lda*n; i++ ) {
00182 a_i[i] = a_save[i];
00183 }
00184 for( i = 0; i < (MIN(m,n)); i++ ) {
00185 ipiv_i[i] = ipiv_save[i];
00186 }
00187
00188
00189 LAPACKE_zge_trans( LAPACK_COL_MAJOR, m, n, a_i, lda, a_r, n+2 );
00190 info_i = LAPACKE_zgetrf( LAPACK_ROW_MAJOR, m_i, n_i, a_r, lda_r, ipiv_i );
00191
00192 LAPACKE_zge_trans( LAPACK_ROW_MAJOR, m, n, a_r, n+2, a_i, lda );
00193
00194 failed = compare_zgetrf( a, a_i, ipiv, ipiv_i, info, info_i, lda, m, n );
00195 if( failed == 0 ) {
00196 printf( "PASSED: row-major high-level interface to zgetrf\n" );
00197 } else {
00198 printf( "FAILED: row-major high-level interface to zgetrf\n" );
00199 }
00200
00201
00202 if( a != NULL ) {
00203 LAPACKE_free( a );
00204 }
00205 if( a_i != NULL ) {
00206 LAPACKE_free( a_i );
00207 }
00208 if( a_r != NULL ) {
00209 LAPACKE_free( a_r );
00210 }
00211 if( a_save != NULL ) {
00212 LAPACKE_free( a_save );
00213 }
00214 if( ipiv != NULL ) {
00215 LAPACKE_free( ipiv );
00216 }
00217 if( ipiv_i != NULL ) {
00218 LAPACKE_free( ipiv_i );
00219 }
00220 if( ipiv_save != NULL ) {
00221 LAPACKE_free( ipiv_save );
00222 }
00223
00224 return 0;
00225 }
00226
00227
00228 static void init_scalars_zgetrf( lapack_int *m, lapack_int *n, lapack_int *lda )
00229 {
00230 *m = 4;
00231 *n = 4;
00232 *lda = 8;
00233
00234 return;
00235 }
00236
00237
00238 static void init_a( lapack_int size, lapack_complex_double *a ) {
00239 lapack_int i;
00240 for( i = 0; i < size; i++ ) {
00241 a[i] = lapack_make_complex_double( 0.0, 0.0 );
00242 }
00243 a[0] = lapack_make_complex_double( -1.34000000000000010e+000,
00244 2.54999999999999980e+000 );
00245 a[8] = lapack_make_complex_double( 2.80000000000000030e-001,
00246 3.16999999999999990e+000 );
00247 a[16] = lapack_make_complex_double( -6.38999999999999970e+000,
00248 -2.20000000000000020e+000 );
00249 a[24] = lapack_make_complex_double( 7.19999999999999970e-001,
00250 -9.20000000000000040e-001 );
00251 a[1] = lapack_make_complex_double( -1.70000000000000010e-001,
00252 -1.40999999999999990e+000 );
00253 a[9] = lapack_make_complex_double( 3.31000000000000010e+000,
00254 -1.49999999999999990e-001 );
00255 a[17] = lapack_make_complex_double( -1.49999999999999990e-001,
00256 1.34000000000000010e+000 );
00257 a[25] = lapack_make_complex_double( 1.29000000000000000e+000,
00258 1.37999999999999990e+000 );
00259 a[2] = lapack_make_complex_double( -3.29000000000000000e+000,
00260 -2.39000000000000010e+000 );
00261 a[10] = lapack_make_complex_double( -1.90999999999999990e+000,
00262 4.41999999999999990e+000 );
00263 a[18] = lapack_make_complex_double( -1.40000000000000010e-001,
00264 -1.35000000000000010e+000 );
00265 a[26] = lapack_make_complex_double( 1.72000000000000000e+000,
00266 1.35000000000000010e+000 );
00267 a[3] = lapack_make_complex_double( 2.41000000000000010e+000,
00268 3.90000000000000010e-001 );
00269 a[11] = lapack_make_complex_double( -5.60000000000000050e-001,
00270 1.47000000000000000e+000 );
00271 a[19] = lapack_make_complex_double( -8.29999999999999960e-001,
00272 -6.89999999999999950e-001 );
00273 a[27] = lapack_make_complex_double( -1.96000000000000000e+000,
00274 6.70000000000000040e-001 );
00275 }
00276 static void init_ipiv( lapack_int size, lapack_int *ipiv ) {
00277 lapack_int i;
00278 for( i = 0; i < size; i++ ) {
00279 ipiv[i] = 0;
00280 }
00281 }
00282
00283
00284
00285 static int compare_zgetrf( lapack_complex_double *a, lapack_complex_double *a_i,
00286 lapack_int *ipiv, lapack_int *ipiv_i,
00287 lapack_int info, lapack_int info_i, lapack_int lda,
00288 lapack_int m, lapack_int n )
00289 {
00290 lapack_int i;
00291 int failed = 0;
00292 for( i = 0; i < lda*n; i++ ) {
00293 failed += compare_complex_doubles(a[i],a_i[i]);
00294 }
00295 for( i = 0; i < (MIN(m,n)); i++ ) {
00296 failed += (ipiv[i] == ipiv_i[i]) ? 0 : 1;
00297 }
00298 failed += (info == info_i) ? 0 : 1;
00299 if( info != 0 || info_i != 0 ) {
00300 printf( "info=%d, info_i=%d\n",(int)info,(int)info_i );
00301 }
00302
00303 return failed;
00304 }