@@ -88,6 +88,16 @@ CBLAS_INDEX cblas_idamin(OPENBLAS_CONST blasint n, OPENBLAS_CONST double *x, OPE
88
88
CBLAS_INDEX cblas_icamin (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx );
89
89
CBLAS_INDEX cblas_izamin (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx );
90
90
91
+ CBLAS_INDEX cblas_ismax (OPENBLAS_CONST blasint n , OPENBLAS_CONST float * x , OPENBLAS_CONST blasint incx );
92
+ CBLAS_INDEX cblas_idmax (OPENBLAS_CONST blasint n , OPENBLAS_CONST double * x , OPENBLAS_CONST blasint incx );
93
+ CBLAS_INDEX cblas_icmax (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx );
94
+ CBLAS_INDEX cblas_izmax (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx );
95
+
96
+ CBLAS_INDEX cblas_ismin (OPENBLAS_CONST blasint n , OPENBLAS_CONST float * x , OPENBLAS_CONST blasint incx );
97
+ CBLAS_INDEX cblas_idmin (OPENBLAS_CONST blasint n , OPENBLAS_CONST double * x , OPENBLAS_CONST blasint incx );
98
+ CBLAS_INDEX cblas_icmin (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx );
99
+ CBLAS_INDEX cblas_izmin (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx );
100
+
91
101
void cblas_saxpy (OPENBLAS_CONST blasint n , OPENBLAS_CONST float alpha , OPENBLAS_CONST float * x , OPENBLAS_CONST blasint incx , float * y , OPENBLAS_CONST blasint incy );
92
102
void cblas_daxpy (OPENBLAS_CONST blasint n , OPENBLAS_CONST double alpha , OPENBLAS_CONST double * x , OPENBLAS_CONST blasint incx , double * y , OPENBLAS_CONST blasint incy );
93
103
void cblas_caxpy (OPENBLAS_CONST blasint n , OPENBLAS_CONST void * alpha , OPENBLAS_CONST void * x , OPENBLAS_CONST blasint incx , void * y , OPENBLAS_CONST blasint incy );
0 commit comments