checked, that ger is OK
authorwernsaar <wernsaar@googlemail.com>
Sat, 10 May 2014 20:49:53 +0000 (22:49 +0200)
committerwernsaar <wernsaar@googlemail.com>
Sat, 10 May 2014 20:49:53 +0000 (22:49 +0200)
interface/ger.c
interface/zger.c

index eb3d224f0be0c7b558c1c88858eb33f4f5d0b262..0218d94dd7c1906acd1ca0965eca32206f558a2e 100644 (file)
@@ -75,7 +75,7 @@ void NAME(blasint *M, blasint *N, FLOAT *Alpha,
   blasint    incy  = *INCY;
   blasint    lda   = *LDA;
   FLOAT *buffer;
-#ifdef SMPTEST
+#ifdef SMP
   int nthreads;
 #endif
 
@@ -107,7 +107,7 @@ void CNAME(enum CBLAS_ORDER order,
 
   FLOAT *buffer;
   blasint info, t;
-#ifdef SMPTEST
+#ifdef SMP
   int nthreads;
 #endif
 
@@ -167,7 +167,7 @@ void CNAME(enum CBLAS_ORDER order,
 
   buffer = (FLOAT *)blas_memory_alloc(1);
 
-#ifdef SMPTEST
+#ifdef SMP
   nthreads = num_cpu_avail(2);
 
   if (nthreads == 1) {
@@ -175,7 +175,7 @@ void CNAME(enum CBLAS_ORDER order,
 
     GER(m, n, 0, alpha, x, incx, y, incy, a, lda, buffer);
 
-#ifdef SMPTEST
+#ifdef SMP
   } else {
     
     GER_THREAD(m, n, alpha, x, incx, y, incy, a, lda, buffer, nthreads);
index 1b615a5132adc2425452097db89a395b56f18536..ad52f40bb86970de6dc48a07f2554f95b28f5656 100644 (file)
@@ -109,7 +109,7 @@ void NAME(blasint *M, blasint *N, FLOAT *Alpha,
   blasint    incy  = *INCY;
   blasint    lda   = *LDA;
   FLOAT *buffer;
-#ifdef SMPTEST
+#ifdef SMP
   int nthreads;
 #endif
 
@@ -144,7 +144,7 @@ void CNAME(enum CBLAS_ORDER order,
 
   FLOAT *buffer;
   blasint info, t;
-#ifdef SMPTEST
+#ifdef SMP
   int nthreads;
 #endif
 
@@ -205,7 +205,7 @@ void CNAME(enum CBLAS_ORDER order,
 
   buffer = (FLOAT *)blas_memory_alloc(1);
 
-#ifdef SMPTEST
+#ifdef SMP
   nthreads = num_cpu_avail(2);
 
   if (nthreads == 1) {
@@ -221,7 +221,7 @@ void CNAME(enum CBLAS_ORDER order,
   }
 #endif
 
-#ifdef SMPTEST
+#ifdef SMP
 
   } else {