Migrated 'bl2' prefix to 'bli'.

Details:
- Changed all filename and function prefixes from 'bl2' to 'bli'.
- Changed the "blis2.h" header filename to "blis.h" and changed all
  corresponding #include statements accordingly.
- Fixed incorrect association for Fran in CREDITS file.
This commit is contained in:
Field G. Van Zee
2013-03-24 20:01:49 -05:00
parent 132bffcef7
commit b65cdc57d9
1048 changed files with 15931 additions and 15931 deletions

View File

@@ -32,7 +32,7 @@
*/
#include "blis2.h"
#include "blis.h"
//
@@ -61,12 +61,12 @@ void PASTEF77(ch,blasname)( \
inc_t rs_c, cs_c; \
\
/* Map BLAS chars to their corresponding BLIS enumerated type value. */ \
bl2_param_map_netlib_to_blis_uplo( *uploc, &blis_uploc ); \
bl2_param_map_netlib_to_blis_trans( *transa, &blis_transa ); \
bli_param_map_netlib_to_blis_uplo( *uploc, &blis_uploc ); \
bli_param_map_netlib_to_blis_trans( *transa, &blis_transa ); \
\
/* Convert negative values of m and k to zero. */ \
bl2_convert_blas_dim1( *m, m0 ); \
bl2_convert_blas_dim1( *k, k0 ); \
bli_convert_blas_dim1( *m, m0 ); \
bli_convert_blas_dim1( *k, k0 ); \
\
/* Set the row and column strides of the matrix operands. */ \
rs_a = 1; \