Modify complex CBLAS functions to take void pointers
Modify complex CBLAS functions to take void pointers instead of float or double arguments (to bring the prototypes in line with netlib and other implementations' cblas.h)
This commit is contained in:
@@ -155,7 +155,10 @@ void NAME(char *UPLO, char *TRANS, char *DIAG,
|
||||
|
||||
void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,
|
||||
enum CBLAS_TRANSPOSE TransA, enum CBLAS_DIAG Diag,
|
||||
blasint n, blasint k, FLOAT *a, blasint lda, FLOAT *x, blasint incx) {
|
||||
blasint n, blasint k, void *va, blasint lda, void *vx, blasint incx) {
|
||||
|
||||
FLOAT *a = (FLOAT*) va;
|
||||
FLOAT *x = (FLOAT*) vx;
|
||||
|
||||
int trans, uplo, unit;
|
||||
blasint info;
|
||||
|
||||
Reference in New Issue
Block a user