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.
10 lines
359 B
10 lines
359 B
2 years ago
|
#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_*/
|