00001 /***************************************************************************** 00002 Copyright (c) 2010, Intel Corp. 00003 All rights reserved. 00004 00005 Redistribution and use in source and binary forms, with or without 00006 modification, are permitted provided that the following conditions are met: 00007 00008 * Redistributions of source code must retain the above copyright notice, 00009 this list of conditions and the following disclaimer. 00010 * Redistributions in binary form must reproduce the above copyright 00011 notice, this list of conditions and the following disclaimer in the 00012 documentation and/or other materials provided with the distribution. 00013 * Neither the name of Intel Corporation nor the names of its contributors 00014 may be used to endorse or promote products derived from this software 00015 without specific prior written permission. 00016 00017 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00018 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00019 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00020 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 00021 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 00022 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 00023 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 00024 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 00025 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 00026 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 00027 THE POSSIBILITY OF SUCH DAMAGE. 00028 ****************************************************************************** 00029 * Contents: Native C interface to LAPACK utility function 00030 * Author: Intel Corporation 00031 * Created in February, 2010 00032 *****************************************************************************/ 00033 #include "lapacke_utils.h" 00034 00035 /* Check a matrix for NaN entries. 00036 * Since matrix in packed format stored continiously it just required to 00037 * check 1d array for NaNs. It doesn't depend upon uplo or matrix_order. 00038 */ 00039 00040 lapack_logical LAPACKE_dtp_nancheck( int matrix_order, char uplo, char diag, 00041 lapack_int n, 00042 const double *ap ) 00043 { 00044 lapack_int i, len; 00045 lapack_logical colmaj, upper, unit; 00046 00047 if( ap == NULL ) return (lapack_logical) 0; 00048 00049 colmaj = ( matrix_order == LAPACK_COL_MAJOR ); 00050 upper = LAPACKE_lsame( uplo, 'u' ); 00051 unit = LAPACKE_lsame( diag, 'u' ); 00052 00053 if( ( !colmaj && ( matrix_order != LAPACK_ROW_MAJOR ) ) || 00054 ( !upper && !LAPACKE_lsame( uplo, 'l' ) ) || 00055 ( !unit && !LAPACKE_lsame( diag, 'n' ) ) ) { 00056 /* Just exit if any of input parameters are wrong */ 00057 return (lapack_logical) 0; 00058 } 00059 00060 if( unit ) { 00061 /* Unit case, diagonal should be excluded from the check for NaN. */ 00062 00063 /* Since col_major upper and row_major lower are equal, 00064 * and col_major lower and row_major upper are equals too - 00065 * using one code for equal cases. XOR( colmaj, upper ) 00066 */ 00067 if( ( colmaj || upper ) && !( colmaj && upper ) ) { 00068 for( i = 1; i < n; i++ ) 00069 if( LAPACKE_d_nancheck( i, &ap[ ((size_t)i+1)*i/2 ], 1 ) ) 00070 return (lapack_logical) 1; 00071 } else { 00072 for( i = 0; i < n-1; i++ ) 00073 if( LAPACKE_d_nancheck( n-i-1, 00074 &ap[ (size_t)i+1 + i*((size_t)2*n-i+1)/2 ], 1 ) ) 00075 return (lapack_logical) 1; 00076 } 00077 return (lapack_logical) 0; 00078 } else { 00079 /* Non-unit case - just check whole array for NaNs. */ 00080 len = n*(n+1)/2; 00081 return LAPACKE_d_nancheck( len, ap, 1 ); 00082 } 00083 }