You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
359 B
9 lines
359 B
#ifndef _LAPACKE_EXAMPLE_AUX_
|
|
#define _LAPACKE_EXAMPLE_AUX_
|
|
|
|
|
|
void print_matrix_rowmajor( char* desc, lapack_int m, lapack_int n, double* mat, lapack_int ldm );
|
|
void print_matrix_colmajor( char* desc, lapack_int m, lapack_int n, double* mat, lapack_int ldm );
|
|
void print_vector( char* desc, lapack_int n, lapack_int* vec );
|
|
|
|
#endif /* _LAPACKE_EXAMPLE_AUX_*/
|
|
|