You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Elemental does not currently take into account the CMake option EL_USE_64BIT_BLAS_INTS when deciding how to build and/or interface to external BLAS libraries such as MKL and OpenBLAS and assumes that the user manually specifies MATH_LIBS. OpenBLAS builds could be handled via passing a definition of INTERFACE64 into the ExternalProject_Add command [1], and MKL could be handled via adding the -DMKL_ILP64 definition before including mkl.h.
Elemental does not currently take into account the CMake option
EL_USE_64BIT_BLAS_INTS
when deciding how to build and/or interface to external BLAS libraries such as MKL and OpenBLAS and assumes that the user manually specifiesMATH_LIBS
. OpenBLAS builds could be handled via passing a definition ofINTERFACE64
into theExternalProject_Add
command [1], and MKL could be handled via adding the-DMKL_ILP64
definition before includingmkl.h
.[1] https://github.com/xianyi/OpenBLAS/blob/d00ada378fbea285aea222f26b387ffe45bd1c9b/Makefile#L42
[2] https://software.intel.com/en-us/node/528682
The text was updated successfully, but these errors were encountered: