aboutsummaryrefslogtreecommitdiffhomepage
path: root/blas
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-02-10 22:59:27 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-02-10 22:59:27 +0100
commitd771295554b4d0238f136588ae526a4c23be9c6c (patch)
treefc95fccfbb8bbe333718b005bd3efcf04eba6ed1 /blas
parentc3f3580b8f7e4af89f4c7cdbe036ac1cac750128 (diff)
remove useless include
Diffstat (limited to 'blas')
-rw-r--r--blas/level3_impl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/blas/level3_impl.h b/blas/level3_impl.h
index 32313e814..a05872666 100644
--- a/blas/level3_impl.h
+++ b/blas/level3_impl.h
@@ -8,7 +8,7 @@
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
#include "common.h"
-#include <stdio.h>
+
int EIGEN_BLAS_FUNC(gemm)(char *opa, char *opb, int *m, int *n, int *k, RealScalar *palpha, RealScalar *pa, int *lda, RealScalar *pb, int *ldb, RealScalar *pbeta, RealScalar *pc, int *ldc)
{
// std::cerr << "in gemm " << *opa << " " << *opb << " " << *m << " " << *n << " " << *k << " " << *lda << " " << *ldb << " " << *ldc << " " << *palpha << " " << *pbeta << "\n";