diff --git a/dune/xt/common/lapacke.cc b/dune/xt/common/lapacke.cc index 078ca9d6fd173d06fd6f8ca367b805cee54da272..fdfff273edaa153304bfad7836bcd2bb13a557b5 100644 --- a/dune/xt/common/lapacke.cc +++ b/dune/xt/common/lapacke.cc @@ -18,8 +18,7 @@ #define lapack_complex_double std::complex<double> #if HAVE_MKL -#include <mkl_cblas.h> -#include <mkl_lapacke.h> +#include <mkl.h> #else // HAVE_MKL #if HAVE_LAPACKE #include <lapacke.h> @@ -38,6 +37,21 @@ namespace Dune { namespace XT { namespace Common { +namespace Mkl { + + +void exp(const int n, const double* a, double* y) +{ +#if HAVE_MKL + vdExp(n, a, y); +#else + for (int ii = 0; ii < n; ++ii) + y[ii] = std::exp(a[ii]); +#endif +} + + +} // namespace Mkl namespace Lapacke { diff --git a/dune/xt/common/lapacke.hh b/dune/xt/common/lapacke.hh index 8f18c25d5fe32145deb4a3aad4c4b9f7cfef63b9..8e72047f6e0818f943b042b4d9ef7ad419a3c7dd 100644 --- a/dune/xt/common/lapacke.hh +++ b/dune/xt/common/lapacke.hh @@ -17,6 +17,17 @@ namespace Dune { namespace XT { namespace Common { +namespace Mkl { + + +/** + * \brief Wrapper around MKL's vdExp + * \sa vdExp + */ +void exp(const int n, const double* a, double* y); + + +} // namespace Mkl namespace Lapacke {