about summary refs log tree commit diff
path: root/src/fastblas.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fastblas.cpp')
-rw-r--r--src/fastblas.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fastblas.cpp b/src/fastblas.cpp
index 35d19c1..de7e27b 100644
--- a/src/fastblas.cpp
+++ b/src/fastblas.cpp
@@ -197,7 +197,7 @@ void fast_dgemm(const char *TransA, const char *TransB, const double alpha,
   } else {
     fast_cblas_dgemm(TransA,TransB,alpha,A,B,beta,C);
 
-    #ifndef NDEBUG
+    #ifdef DISABLE
     if (is_check_mode()) {
       // ---- validate with original implementation
       gsl_matrix *C1 = gsl_matrix_alloc(C->size1,C->size2);