@@ -407,13 +407,13 @@ void cblas_cimatcopy(OPENBLAS_CONST enum CBLAS_ORDER CORDER, OPENBLAS_CONST enum
407407void 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 ,
408408 OPENBLAS_CONST blasint clda , OPENBLAS_CONST blasint cldb );
409409
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 ,
411411 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 ,
413413 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 ,
415415 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 ,
417417 double * c , OPENBLAS_CONST blasint cldc );
418418
419419void 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