Change integer type in CBLAS function signatures to f77_int, and add proper const-correctness to BLAS layer.

This commit is contained in:
Devin Matthews
2016-04-20 15:56:46 -05:00
parent ff84469a45
commit e4c54c8146
312 changed files with 2467 additions and 3570 deletions

View File

@@ -36,14 +36,14 @@
void bla_herk_check
(
char* dt_str,
char* op_str,
f77_char* uploc,
f77_char* transa,
f77_int* m,
f77_int* k,
f77_int* lda,
f77_int* ldc
const char* dt_str,
const char* op_str,
const f77_char* uploc,
const f77_char* transa,
const f77_int* m,
const f77_int* k,
const f77_int* lda,
const f77_int* ldc
);
#endif