aboutsummaryrefslogtreecommitdiffhomepage
path: root/blas/level3_impl.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-03-03 09:32:10 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-03-03 09:32:10 +0100
commitf1d310195653e1d84f6b606354ea1c5babfa3d5d (patch)
tree10d05a918b5be1eccbc54696226f900adbb5c418 /blas/level3_impl.h
parent32823caa629a4f440a8a4af2c4ffb9f751d711ab (diff)
blas: add warnings for non implemented functions
Diffstat (limited to 'blas/level3_impl.h')
-rw-r--r--blas/level3_impl.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/blas/level3_impl.h b/blas/level3_impl.h
index c9023ab37..6a0e64392 100644
--- a/blas/level3_impl.h
+++ b/blas/level3_impl.h
@@ -308,6 +308,7 @@ int EIGEN_BLAS_FUNC(syr2k)(char *uplo, char *op, int *n, int *k, RealScalar *pal
Scalar beta = *reinterpret_cast<Scalar*>(pbeta);
// TODO
+ std::cerr << "Eigen BLAS: _syr2k is not implemented yet\n";
return 0;
}
@@ -422,6 +423,7 @@ int EIGEN_BLAS_FUNC(her2k)(char *uplo, char *op, int *n, int *k, RealScalar *pal
}
// TODO
+ std::cerr << "Eigen BLAS: _her2k is not implemented yet\n";
return 0;
}