Browse Source

Fix CBLAS prototype

tags/v0.3.27
Martin Kroeker GitHub 1 year ago
parent
commit
a7d004e820
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      interface/max.c

+ 6
- 1
interface/max.c View File

@@ -145,8 +145,13 @@ FLOATRET NAME(blasint *N, FLOAT *x, blasint *INCX){


#else #else


#ifdef COMPLEX
FLOAT CNAME(blasint n, void *vx, blasint incx){
FLOAT *x = (FLOAT*) vx;
#else
FLOAT CNAME(blasint n, FLOAT *x, blasint incx){ FLOAT CNAME(blasint n, FLOAT *x, blasint incx){

#endif
FLOAT ret; FLOAT ret;


PRINT_DEBUG_CNAME; PRINT_DEBUG_CNAME;


Loading…
Cancel
Save