aboutsummaryrefslogtreecommitdiff
path: root/src/fastblas.cpp
diff options
context:
space:
mode:
authorPjotr Prins2017-10-18 12:36:39 +0000
committerPjotr Prins2017-10-18 12:36:39 +0000
commit24a4a5132a07ee6a8717844e3c5862882c88b25a (patch)
tree00d11c524b256790c8ec1cdcdb9e2da8682bdb69 /src/fastblas.cpp
parentb3e613a67c2a8cc6c7e910b5120618724392bf7a (diff)
downloadpangemma-24a4a5132a07ee6a8717844e3c5862882c88b25a.tar.gz
Tests still pass with safe_alloc (which sets the buffers to NaNs on allocation)
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);