diff options
author | Pjotr Prins | 2017-10-18 12:36:39 +0000 |
---|---|---|
committer | Pjotr Prins | 2017-10-18 12:36:39 +0000 |
commit | 24a4a5132a07ee6a8717844e3c5862882c88b25a (patch) | |
tree | 00d11c524b256790c8ec1cdcdb9e2da8682bdb69 /src/fastblas.cpp | |
parent | b3e613a67c2a8cc6c7e910b5120618724392bf7a (diff) | |
download | pangemma-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.cpp | 2 |
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); |