about summary refs log tree commit diff
path: root/src/fastblas.cpp
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/fastblas.cpp
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/fastblas.cpp')
-rw-r--r--src/fastblas.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/fastblas.cpp b/src/fastblas.cpp
index 42c59ee..41ee741 100644
--- a/src/fastblas.cpp
+++ b/src/fastblas.cpp
@@ -18,18 +18,13 @@
     along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
 
-// #include "gsl/gsl_matrix.h"
 #include <algorithm>    // std::min
 #include <cmath>
 #include <iomanip>
 #include <vector>
 #include "debug.h"
-#include "fastblas.h"
-#include "fastopenblas.h"
 #include "mathfunc.h"
 #include <string.h>
-#include "eigenlib.h"
-#include <cblas.h>
 
 const char *FastblasTrans = "T";
 const char *FastblasNoTrans = "N";