aboutsummaryrefslogtreecommitdiff
path: root/src/fastopenblas.h
diff options
context:
space:
mode:
authorPjotr Prins2020-05-28 05:39:18 -0500
committerPjotr Prins2020-05-28 05:39:18 -0500
commit7c4f7f7f7c4320658828631039f57fadf6bfdb29 (patch)
treee5f69ca698ee2bdbf15d171cd0dbc9d8bf171dbd /src/fastopenblas.h
parentb309569fe9497befa008ac2d2cbc04f2e861ce76 (diff)
downloadpangemma-7c4f7f7f7c4320658828631039f57fadf6bfdb29.tar.gz
Fix copiles on gcc 10. Main thing is not to mix BLAS includes from
OpenBLAS, GSL (and Eigen when used).
Diffstat (limited to 'src/fastopenblas.h')
-rw-r--r--src/fastopenblas.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/fastopenblas.h b/src/fastopenblas.h
index 7f453da..ace8347 100644
--- a/src/fastopenblas.h
+++ b/src/fastopenblas.h
@@ -21,13 +21,8 @@
#ifndef __FASTOPENBLAS_H__
#define __FASTOPENBLAS_H__
-#include <assert.h>
-#include <iostream>
-extern "C"
-{
- #include <cblas.h> // For OpenBlas / Atlas
-}
-// #include "gsl/gsl_matrix.h"
+// #include <assert.h>
+// #include <iostream>
void fast_cblas_dgemm(const enum CBLAS_ORDER ,
const enum CBLAS_TRANSPOSE TransA,