@@ -347,6 +347,16 @@ void cblas_cimatcopy(OPENBLAS_CONST enum CBLAS_ORDER CORDER, OPENBLAS_CONST enum
347347void 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 ,
348348 OPENBLAS_CONST blasint clda , OPENBLAS_CONST blasint cldb );
349349
350+ 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 ,
351+ float * c , OPENBLAS_CONST blasint cldc );
352+ 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 ,
353+ double * c , OPENBLAS_CONST blasint cldc );
354+ 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 ,
355+ float * c , OPENBLAS_CONST blasint cldc );
356+ 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 ,
357+ double * c , OPENBLAS_CONST blasint cldc );
358+
359+
350360#ifdef __cplusplus
351361}
352362#endif /* __cplusplus */
0 commit comments