Visible to Intel only — GUID: GUID-3B422AD4-BBD7-49D5-AF05-B218DC897337
CHEEVR Example Program in C
/******************************************************************************* * Copyright (C) 2009-2015 Intel Corporation. All Rights Reserved. * The information and material ("Material") provided below is owned by Intel * Corporation or its suppliers or licensors, and title to such Material remains * with Intel Corporation or its suppliers or licensors. The Material contains * proprietary information of Intel or its suppliers and licensors. The Material * is protected by worldwide copyright laws and treaty provisions. No part of * the Material may be copied, reproduced, published, uploaded, posted, * transmitted, or distributed in any way without Intel's prior express written * permission. No license under any patent, copyright or other intellectual * property rights in the Material is granted to or conferred upon you, either * expressly, by implication, inducement, estoppel or otherwise. Any license * under such intellectual property rights must be express and approved by Intel * in writing. * ******************************************************************************** */ /* CHEEVR Example. ============== Program computes eigenvalues specified by a selected range of values and corresponding eigenvectors of a complex Hermitian matrix A using the Relatively Robust Representations, where A is: ( -2.16, 0.00) ( -0.16, -4.86) ( -7.23, -9.38) ( -0.04, 6.86) ( -0.16, 4.86) ( 7.45, 0.00) ( 4.39, 6.29) ( -8.11, -4.41) ( -7.23, 9.38) ( 4.39, -6.29) ( -9.03, 0.00) ( -6.89, -7.66) ( -0.04, -6.86) ( -8.11, 4.41) ( -6.89, 7.66) ( 7.76, 0.00) Description. ============ The routine computes selected eigenvalues and, optionally, eigenvectors of an n-by-n complex Hermitian matrix A. The eigenvector v(j) of A satisfies A*v(j) = lambda(j)*v(j) where lambda(j) is its eigenvalue. The computed eigenvectors are orthonormal. Eigenvalues and eigenvectors can be selected by specifying either a range of values or a range of indices for the desired eigenvalues. Example Program Results. ======================== CHEEVR Example Program Results The total number of eigenvalues found: 2 Selected eigenvalues -4.18 3.57 Selected eigenvectors (stored columnwise) ( 0.68, 0.00) ( 0.38, 0.00) ( 0.03, 0.18) ( 0.54, -0.57) ( -0.03, 0.21) ( -0.40, 0.04) ( 0.20, 0.64) ( -0.14, -0.26) */ #include <stdlib.h> #include <stdio.h> /* Complex datatype */ struct _fcomplex { float re, im; }; typedef struct _fcomplex fcomplex; /* CHEEVR prototype */ extern void cheevr( char* jobz, char* range, char* uplo, int* n, fcomplex* a, int* lda, float* vl, float* vu, int* il, int* iu, float* abstol, int* m, float* w, fcomplex* z, int* ldz, int* isuppz, fcomplex* work, int* lwork, float* rwork, int* lrwork, int* iwork, int* liwork, int* info ); /* Auxiliary routines prototypes */ extern void print_matrix( char* desc, int m, int n, fcomplex* a, int lda ); extern void print_rmatrix( char* desc, int m, int n, float* a, int lda ); /* Parameters */ #define N 4 #define LDA N #define LDZ N /* Main program */ int main() { /* Locals */ int n = N, lda = LDA, ldz = LDZ, il, iu, m, info, lwork, lrwork, liwork; float abstol, vl, vu; int iwkopt; int* iwork; float rwkopt; float* rwork; fcomplex wkopt; fcomplex* work; /* Local arrays */ int isuppz[N]; float w[N]; fcomplex z[LDZ*N]; fcomplex a[LDA*N] = { {-2.16f, 0.00f}, {-0.16f, 4.86f}, {-7.23f, 9.38f}, {-0.04f, -6.86f}, { 0.00f, 0.00f}, { 7.45f, 0.00f}, { 4.39f, -6.29f}, {-8.11f, 4.41f}, { 0.00f, 0.00f}, { 0.00f, 0.00f}, {-9.03f, 0.00f}, {-6.89f, 7.66f}, { 0.00f, 0.00f}, { 0.00f, 0.00f}, { 0.00f, 0.00f}, { 7.76f, 0.00f} }; /* Executable statements */ printf( " CHEEVR Example Program Results\n" ); /* Negative abstol means using the default value */ abstol = -1.0; /* Set VL, VU to compute eigenvalues in half-open (VL,VU] interval */ vl = -5.0; vu = 5.0; /* Query and allocate the optimal workspace */ lwork = -1; lrwork = -1; liwork = -1; cheevr( "Vectors", "Values", "Lower", &n, a, &lda, &vl, &vu, &il, &iu, &abstol, &m, w, z, &ldz, isuppz, &wkopt, &lwork, &rwkopt, &lrwork, &iwkopt, &liwork, &info ); lwork = (int)wkopt.re; work = (fcomplex*)malloc( lwork*sizeof(fcomplex) ); lrwork = (int)rwkopt; rwork = (float*)malloc( lrwork*sizeof(float) ); liwork = iwkopt; iwork = (int*)malloc( liwork*sizeof(int) ); /* Solve eigenproblem */ cheevr( "Vectors", "Values", "Lower", &n, a, &lda, &vl, &vu, &il, &iu, &abstol, &m, w, z, &ldz, isuppz, work, &lwork, rwork, &lrwork, iwork, &liwork, &info ); /* Check for convergence */ if( info > 0 ) { printf( "The algorithm failed to compute eigenvalues.\n" ); exit( 1 ); } /* Print the number of eigenvalues found */ printf( "\n The total number of eigenvalues found:%2i\n", m ); /* Print eigenvalues */ print_rmatrix( "Selected eigenvalues", 1, m, w, 1 ); /* Print eigenvectors */ print_matrix( "Selected eigenvectors (stored columnwise)", n, m, z, ldz ); /* Free workspace */ free( (void*)iwork ); free( (void*)rwork ); free( (void*)work ); exit( 0 ); } /* End of CHEEVR Example */ /* Auxiliary routine: printing a matrix */ void print_matrix( char* desc, int m, int n, fcomplex* a, int lda ) { int i, j; printf( "\n %s\n", desc ); for( i = 0; i < m; i++ ) { for( j = 0; j < n; j++ ) printf( " (%6.2f,%6.2f)", a[i+j*lda].re, a[i+j*lda].im ); printf( "\n" ); } } /* Auxiliary routine: printing a real matrix */ void print_rmatrix( char* desc, int m, int n, float* a, int lda ) { int i, j; printf( "\n %s\n", desc ); for( i = 0; i < m; i++ ) { for( j = 0; j < n; j++ ) printf( " %6.2f", a[i+j*lda] ); printf( "\n" ); } }
Parent topic: CHEEVR Example