1010#include "cblas.h"
1111#include "cblas_f77.h"
1212void cblas_cgbmv (const CBLAS_LAYOUT layout ,
13- const CBLAS_TRANSPOSE TransA , const int M , const int N ,
14- const int KL , const int KU ,
15- const void * alpha , const void * A , const int lda ,
16- const void * X , const int incX , const void * beta ,
17- void * Y , const int incY )
13+ const CBLAS_TRANSPOSE TransA , const CBLAS_INDEX M , const CBLAS_INDEX N ,
14+ const CBLAS_INDEX KL , const CBLAS_INDEX KU ,
15+ const void * alpha , const void * A , const CBLAS_INDEX lda ,
16+ const void * X , const CBLAS_INDEX incX , const void * beta ,
17+ void * Y , const CBLAS_INDEX incY )
1818{
1919 char TA ;
2020#ifdef F77_CHAR
@@ -34,10 +34,10 @@ void cblas_cgbmv(const CBLAS_LAYOUT layout,
3434 #define F77_incX incx
3535 #define F77_incY incY
3636#endif
37- int n = 0 , i = 0 , incx = incX ;
37+ CBLAS_INDEX n = 0 , i = 0 , incx = incX ;
3838 const float * xx = (float * )X , * alp = (float * )alpha , * bet = (float * )beta ;
3939 float ALPHA [2 ],BETA [2 ];
40- int tincY , tincx ;
40+ CBLAS_INDEX tincY , tincx ;
4141 float * x = (float * )X , * y = (float * )Y , * st = 0 , * tx = 0 ;
4242 extern int CBLAS_CallFromC ;
4343 extern int RowMajorStrg ;
0 commit comments