You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

lapacke_example_aux.h 359 B

123456789
  1. #ifndef _LAPACKE_EXAMPLE_AUX_
  2. #define _LAPACKE_EXAMPLE_AUX_
  3. void print_matrix_rowmajor( char* desc, lapack_int m, lapack_int n, double* mat, lapack_int ldm );
  4. void print_matrix_colmajor( char* desc, lapack_int m, lapack_int n, double* mat, lapack_int ldm );
  5. void print_vector( char* desc, lapack_int n, lapack_int* vec );
  6. #endif /* _LAPACKE_EXAMPLE_AUX_*/