You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
864 B

  1. #ifndef EIGEN_PARDISOSUPPORT_MODULE_H
  2. #define EIGEN_PARDISOSUPPORT_MODULE_H
  3. #include "SparseCore"
  4. #include "src/Core/util/DisableStupidWarnings.h"
  5. #include <mkl_pardiso.h>
  6. #include <unsupported/Eigen/SparseExtra>
  7. /** \ingroup Support_modules
  8. * \defgroup PardisoSupport_Module PardisoSupport module
  9. *
  10. * This module brings support for the Intel(R) MKL PARDISO direct sparse solvers.
  11. *
  12. * \code
  13. * #include <Eigen/PardisoSupport>
  14. * \endcode
  15. *
  16. * 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.
  17. * See this \ref TopicUsingIntelMKL "page" for more information on MKL-Eigen integration.
  18. *
  19. */
  20. #include "src/PardisoSupport/PardisoSupport.h"
  21. #include "src/Core/util/ReenableStupidWarnings.h"
  22. #endif // EIGEN_PARDISOSUPPORT_MODULE_H