@@ -407,13 +407,13 @@ void cblas_cimatcopy(OPENBLAS_CONST enum CBLAS_ORDER CORDER, OPENBLAS_CONST enum
407
407
void cblas_zimatcopy (OPENBLAS_CONST enum CBLAS_ORDER CORDER , OPENBLAS_CONST enum CBLAS_TRANSPOSE CTRANS , OPENBLAS_CONST blasint crows , OPENBLAS_CONST blasint ccols , OPENBLAS_CONST double * calpha , double * a ,
408
408
OPENBLAS_CONST blasint clda , OPENBLAS_CONST blasint cldb );
409
409
410
- void cblas_sgeadd (OPENBLAS_CONST enum CBLAS_ORDER CORDER ,OPENBLAS_CONST blasint crows , OPENBLAS_CONST blasint ccols , OPENBLAS_CONST float calpha , float * a , OPENBLAS_CONST blasint clda , OPENBLAS_CONST float cbeta ,
410
+ void cblas_sgeadd (OPENBLAS_CONST enum CBLAS_ORDER CORDER ,OPENBLAS_CONST blasint crows , OPENBLAS_CONST blasint ccols , OPENBLAS_CONST float calpha , OPENBLAS_CONST float * a , OPENBLAS_CONST blasint clda , OPENBLAS_CONST float cbeta ,
411
411
float * c , OPENBLAS_CONST blasint cldc );
412
- void cblas_dgeadd (OPENBLAS_CONST enum CBLAS_ORDER CORDER ,OPENBLAS_CONST blasint crows , OPENBLAS_CONST blasint ccols , OPENBLAS_CONST double calpha , double * a , OPENBLAS_CONST blasint clda , OPENBLAS_CONST double cbeta ,
412
+ void cblas_dgeadd (OPENBLAS_CONST enum CBLAS_ORDER CORDER ,OPENBLAS_CONST blasint crows , OPENBLAS_CONST blasint ccols , OPENBLAS_CONST double calpha , OPENBLAS_CONST double * a , OPENBLAS_CONST blasint clda , OPENBLAS_CONST double cbeta ,
413
413
double * c , OPENBLAS_CONST blasint cldc );
414
- void cblas_cgeadd (OPENBLAS_CONST enum CBLAS_ORDER CORDER ,OPENBLAS_CONST blasint crows , OPENBLAS_CONST blasint ccols , OPENBLAS_CONST float * calpha , float * a , OPENBLAS_CONST blasint clda , OPENBLAS_CONST float * cbeta ,
414
+ void cblas_cgeadd (OPENBLAS_CONST enum CBLAS_ORDER CORDER ,OPENBLAS_CONST blasint crows , OPENBLAS_CONST blasint ccols , OPENBLAS_CONST float * calpha , OPENBLAS_CONST float * a , OPENBLAS_CONST blasint clda , OPENBLAS_CONST float * cbeta ,
415
415
float * c , OPENBLAS_CONST blasint cldc );
416
- void cblas_zgeadd (OPENBLAS_CONST enum CBLAS_ORDER CORDER ,OPENBLAS_CONST blasint crows , OPENBLAS_CONST blasint ccols , OPENBLAS_CONST double * calpha , double * a , OPENBLAS_CONST blasint clda , OPENBLAS_CONST double * cbeta ,
416
+ void cblas_zgeadd (OPENBLAS_CONST enum CBLAS_ORDER CORDER ,OPENBLAS_CONST blasint crows , OPENBLAS_CONST blasint ccols , OPENBLAS_CONST double * calpha , OPENBLAS_CONST double * a , OPENBLAS_CONST blasint clda , OPENBLAS_CONST double * cbeta ,
417
417
double * c , OPENBLAS_CONST blasint cldc );
418
418
419
419
void cblas_sgemm_batch (OPENBLAS_CONST enum CBLAS_ORDER Order , OPENBLAS_CONST enum CBLAS_TRANSPOSE * TransA_array , OPENBLAS_CONST enum CBLAS_TRANSPOSE * TransB_array , OPENBLAS_CONST blasint * M_array , OPENBLAS_CONST blasint * N_array , OPENBLAS_CONST blasint * K_array ,
0 commit comments