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"
//
@@ -60,15 +60,15 @@ void PASTEF77(ch,blasname)( \
inc_t rs_a, cs_a; \
\
/* Map BLAS chars to their corresponding BLIS enumerated type value. */ \
bl2_param_map_netlib_to_blis_uplo( *uploa, &blis_uploa ); \
bli_param_map_netlib_to_blis_uplo( *uploa, &blis_uploa ); \
\
/* Convert negative values of m to zero. */ \
bl2_convert_blas_dim1( *m, m0 ); \
bli_convert_blas_dim1( *m, m0 ); \
\
/* If the input increments are negative, adjust the pointers so we can
use positive increments instead. */ \
bl2_convert_blas_incv( m0, x, *incx, x0, incx0 ); \
bl2_convert_blas_incv( m0, y, *incy, y0, incy0 ); \
bli_convert_blas_incv( m0, x, *incx, x0, incx0 ); \
bli_convert_blas_incv( m0, y, *incy, y0, incy0 ); \
\
/* Set the row and column strides of A. */ \
rs_a = 1; \