Skip to content

Commit 25c986d

Browse files
authored
Add prototypes for CBLAS_CROTG and CBLAS_ZROTG
1 parent a8f2494 commit 25c986d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

cblas.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,9 @@ void cblas_zdrot(OPENBLAS_CONST blasint n, OPENBLAS_CONST void *x, OPENBLAS_CONS
130130

131131
void cblas_srotg(float *a, float *b, float *c, float *s);
132132
void cblas_drotg(double *a, double *b, double *c, double *s);
133+
void cblas_crotg(void *a, void *b, float *c, void *s);
134+
void cblas_zrotg(void *a, void *b, double *c, void *s);
135+
133136

134137
void cblas_srotm(OPENBLAS_CONST blasint N, float *X, OPENBLAS_CONST blasint incX, float *Y, OPENBLAS_CONST blasint incY, OPENBLAS_CONST float *P);
135138
void cblas_drotm(OPENBLAS_CONST blasint N, double *X, OPENBLAS_CONST blasint incX, double *Y, OPENBLAS_CONST blasint incY, OPENBLAS_CONST double *P);

0 commit comments

Comments
 (0)