2015-10-26 18:46:05 +08:00
// This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
2011-12-05 15:52:21 +08:00
#ifndef EIGEN_PARDISOSUPPORT_MODULE_H
#define EIGEN_PARDISOSUPPORT_MODULE_H
#include "SparseCore"
#include "src/Core/util/DisableStupidWarnings.h"
#include <mkl_pardiso.h>
2011-12-09 23:52:37 +08:00
/** \ingroup Support_modules
2012-02-27 20:23:21 +08:00
* \defgroup PardisoSupport_Module PardisoSupport module
2011-12-05 15:52:21 +08:00
*
2012-06-21 16:51:22 +08:00
* This module brings support for the Intel(R) MKL PARDISO direct sparse solvers.
2011-12-05 15:52:21 +08:00
*
* \code
2012-02-27 20:23:21 +08:00
* #include <Eigen/PardisoSupport>
2011-12-05 15:52:21 +08:00
* \endcode
2012-06-21 16:51:22 +08:00
*
* In order to use this module, the MKL headers must be accessible from the include paths, and your binary must be linked to the MKL library and its dependencies.
* See this \ref TopicUsingIntelMKL "page" for more information on MKL-Eigen integration.
*
2011-12-05 15:52:21 +08:00
*/
2012-02-27 20:23:21 +08:00
#include "src/PardisoSupport/PardisoSupport.h"
2011-12-05 15:52:21 +08:00
#include "src/Core/util/ReenableStupidWarnings.h"
#endif // EIGEN_PARDISOSUPPORT_MODULE_H