Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compiler cmake issue #245

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 17 additions & 10 deletions deal.II-toolchain/packages/superlu_dist.package
Original file line number Diff line number Diff line change
@@ -1,25 +1,32 @@
################################################################################
## SUPERLU_DIST ##
################################################################################
# SUPERLU_DIST

VERSION=6.4.0
CHECKSUM=4001999cda77d6176077f160f1a4659a

VERSION=5.1.2
CHECKSUM=0a99bbb5f6c26a9c1d7ab17ea35d4e6f
# Linking issues with BLAS/LAPACK, maybe CombBLAS is needed for v7.0.0:
#VERSION=7.0.0
#CHECKSUM=skip

NAME=superlu_dist_${VERSION}
# NOTE: the tarball is v7.0.0.tar.gz but the folder is superlu_dist-7.0.0
NAME=v${VERSION}
PACKING=.tar.gz
EXTRACTSTO=SuperLU_DIST_${VERSION}
SOURCE=http://crd-legacy.lbl.gov/~xiaoye/SuperLU/
EXTRACTSTO=superlu_dist-${VERSION}

BUILDCHAIN=cmake
SOURCE=https://github.com/xiaoyeli/superlu_dist/archive/refs/tags/

INSTALL_PATH=${INSTALL_PATH}/${NAME}
BUILDCHAIN=cmake
INSTALL_PATH=${INSTALL_PATH}/${EXTRACTSTO}

CONFOPTS="${CONFOPTS} \
-D CMAKE_C_FLAGS:STRING=\"-std=c99 -fPIC\" \
-D TPL_ENABLE_LAPACKLIB:BOOL=ON \
-D TPL_ENABLE_PARMETISLIB:BOOL=ON \
-D TPL_PARMETIS_INCLUDE_DIRS:PATH=${PARMETIS_DIR}/include \
-D TPL_PARMETIS_LIBRARIES:FILEPATH=${PARMETIS_DIR}/lib/libparmetis.${LDSUFFIX} \
-D CMAKE_C_FLAGS:STRING=\"-std=c99 -fPIC\" \
-D BUILD_SHARED_LIBS:BOOL=ON"

################################################################################
package_specific_register () {
export SUPERLU_DIR=${INSTALL_PATH}

Expand Down
238 changes: 114 additions & 124 deletions deal.II-toolchain/packages/trilinos.package
Original file line number Diff line number Diff line change
@@ -1,73 +1,20 @@
################################################################################
## TRILINOS ##
# TRILINOS

################################################################################
# TODO
# - git option
# - remove variables for trilinos mayor version

if [ -z "${TRILINOS_MAJOR_VERSION}" ]; then
TRILINOS_MAJOR_VERSION=AUTO
fi
VERSION=13-0-1
CHECKSUM=9d76b494fe1c00cedb93d51dfc666a27

if [ ${TRILINOS_MAJOR_VERSION} = "AUTO" ]; then
TRILINOS_MAJOR_VERSION="12"
fi

if [ ${TRILINOS_MAJOR_VERSION} = "DEV" ];then
# download from github:
# this is the last "blessed" version we like:
VERSION=dbf41f3b26b0326a1377f219e6e07eab861d181e
EXTRACTSTO=trilinos-12.dbf41f

NAME=Trilinos.git
PACKING=git
SOURCE=https://github.com/trilinos/
elif [ ${TRILINOS_MAJOR_VERSION} = "12" ]; then
VERSION=12-18-1
CHECKSUM=9c1d151169949bca6cf203831e4d6aee

# VERSION=12-14-1
# CHECKSUM=de912cca43c2ca3b74aa08528ac39dbd

# VERSION=12-12-1
# CHECKSUM=ecd4606fa332212433c98bf950a69cc7


# note: the official trilinos tarball changed md5sum but we confirmed that the contents is
# identical. We accept both hashes here.
# VERSION=12-10-1
# CHECKSUM="667333dbd7c0f031d47d7c5511fd0810 40f28628b63310f9bd17c26d9ebe32b1"

# VERSION=12-4-2
# CHECKSUM=4c25a757d86bde3531090bd900a2cea8

SOURCE=https://github.com/trilinos/Trilinos/archive/
NAME=trilinos-release-${VERSION}
EXTRACTSTO=Trilinos-trilinos-release-${VERSION}
PACKING=.tar.gz

elif [ ${TRILINOS_MAJOR_VERSION} = "11" ]; then
VERSION=11-14-3
CHECKSUM=dea62e57ebe51a886bee0b10a2176969

#Note: For Trilinos v11 we need to force SuperLUDist=OFF,
# since only the deprecated SuperLUDist v3.3 together with an Amesos patch
# (and not the current SuperLUDist v4.x with the same Amesos patch)
# is working.
#Note: This issue is resolved by setting
# -D HAVE_SUPERLUDIST_LUSTRUCTINIT_2ARG
# for Trilinos v12; this is neglegted by Trilinos v11 since it is unknown.
cecho ${BAD} "trilinos: warning: forcing unset SUPERLU_DIR (not supported)"
unset SUPERLU_DIR

SOURCE=https://github.com/trilinos/Trilinos/archive/
NAME=trilinos-release-${VERSION}
EXTRACTSTO=Trilinos-trilinos-release-${VERSION}
PACKING=.tar.gz
else
cecho ${BAD} "Unknown Trilinos version ${TRILINOS_MAJOR_VERSION} forced, please use AUTO|12|11."
exit
fi
SOURCE=https://github.com/trilinos/Trilinos/archive/
NAME=trilinos-release-${VERSION}
EXTRACTSTO=Trilinos-trilinos-release-${VERSION}
PACKING=.tar.gz

BUILDCHAIN=cmake

INSTALL_PATH=${INSTALL_PATH}/${NAME}

################################################################################
Expand All @@ -77,17 +24,47 @@ INSTALL_PATH=${INSTALL_PATH}/${NAME}
################################################################################
# Please do not change the following options

# Set blas and lapack directories
if [ ! -z "${BLAS_DIR}" ]; then
cecho ${INFO} "trilinos: configuration with BLAS_DIR=${BLAS_DIR}"
# determine BLAS_LIBRARY_DIRS
if [ -z "${CANDI_BLAS_LIBRARY_DIRS}" ]; then

if [ -n "${BLAS_DIR}" ]; then
CANDI_BLAS_LIBRARY_DIRS=${BLAS_DIR}
fi

if [ ${MKL} = ON ] && [ -z "${BLAS_DIR}" ] && [ -n "${MKL_DIR}" ]; then
CANDI_BLAS_LIBRARY_DIRS=${MKL_DIR}
fi
fi

if [ -n "${CANDI_BLAS_LIBRARY_DIRS}" ]; then
cecho ${INFO} "trilinos: setting BLAS_LIBRARY_DIRS:STRING=${CANDI_BLAS_LIBRARY_DIRS}"

CONFOPTS="${CONFOPTS} \
-D BLAS_LIBRARY_DIRS:STRING=${BLAS_DIR}"
-D BLAS_LIBRARY_DIRS:STRING=${CANDI_BLAS_LIBRARY_DIRS}"

#unset CANDI_BLAS_LIBRARY_DIRS
fi


# determine LAPACK_LIBRARY_DIRS
if [ -z "${CANDI_LAPACK_LIBRARY_DIRS}" ]; then

if [ -n "${LAPACK_DIR}" ]; then
CANDI_LAPACK_LIBRARY_DIRS=${LAPACK_DIR}
fi

if [ ${MKL} = ON ] && [ -z "${LAPACK_DIR}" ] && [ -n "${MKL_DIR}" ]; then
CANDI_LAPACK_LIBRARY_DIRS=${MKL_DIR}
fi
fi

if [ ! -z "${LAPACK_DIR}" ]; then
cecho ${INFO} "trilinos: configuration with LAPACK_DIR=${LAPACK_DIR}"
if [ -n "${CANDI_LAPACK_LIBRARY_DIRS}" ]; then
cecho ${INFO} "trilinos: setting LAPACK_LIBRARY_DIRS:STRING=${CANDI_LAPACK_LIBRARY_DIRS}"

CONFOPTS="${CONFOPTS} \
-D LAPACK_LIBRARY_DIRS:STRING=${LAPACK_DIR}"
-D LAPACK_LIBRARY_DIRS:STRING=${CANDI_LAPACK_LIBRARY_DIRS}"

#unset CANDI_LAPACK_LIBRARY_DIRS
fi

if [ ! -z "${SCALAPACK_DIR}" ]; then
Expand All @@ -106,87 +83,91 @@ if [ ! -z "${MUMPS_DIR}" ]; then
-D MUMPS_LIBRARY_DIRS:STRING=${MUMPS_DIR}/lib"
fi

# Set intel MKL options
# Intel MKL
if [ ${MKL} = ON ]; then
cecho ${INFO} "trilinos: configuration with MKL"

if [ -z "${BLAS_DIR}" ] && [ -z "${LAPACK_DIR}" ]; then
cecho ${INFO} "trilinos: configuration with BLAS_DIR=${MKL_DIR}"
cecho ${INFO} "trilinos: configuration with LAPACK_DIR=${MKL_DIR}"
CONFOPTS="${CONFOPTS} \
-D BLAS_LIBRARY_DIRS:STRING=${MKL_DIR} \
-D LAPACK_LIBRARY_DIRS:STRING=${MKL_DIR}"
fi
CONFOPTS="${CONFOPTS} \
-D BLAS_LIBRARY_NAMES:STRING='mkl_core;mkl_sequential' \
-D LAPACK_LIBRARY_NAMES:STRING=mkl_intel_lp64"

# Trilinos will complain that MKL does not support HAVE_TEUCHOS_BLASFLOAT. See
# the discussion in https://github.com/dealii/candi/pull/92 for more details.
# Trilinos will complain that MKL doesn't support HAVE_TEUCHOS_BLASFLOAT
# https://github.com/dealii/candi/pull/92
cecho ${INFO} "trilinos: disabling some Tpetra instantiations because you are using MKL"

CONFOPTS="${CONFOPTS} \
-D BLAS_LIBRARY_NAMES:STRING='mkl_core;mkl_sequential' \
-D Tpetra_INST_FLOAT:BOOL=OFF \
-D Tpetra_INST_COMPLEX_FLOAT:BOOL=OFF \
-D LAPACK_LIBRARY_NAMES:STRING=mkl_intel_lp64"
-D Tpetra_INST_FLOAT:BOOL=OFF \
-D Tpetra_INST_COMPLEX_FLOAT:BOOL=OFF"

else
if [ ! -z "${BLAS_LIB}" ]; then
# openBLAS
if [ -n "${BLAS_LIB}" ]; then
# We need to specify the full name if using openblas.package:
cecho ${INFO} "trilinos: configuration with BLAS_LIB=${BLAS_LIB}"
cecho ${INFO} "trilinos: setting TPL_BLAS_LIBRARIES:STRING=${BLAS_LIB}"
cecho ${INFO} "trilinos: setting TPL_LAPACK_LIBRARIES:STRING=${BLAS_LIB}"

CONFOPTS="${CONFOPTS} \
-D TPL_BLAS_LIBRARIES:STRING=${BLAS_LIB} \
-D TPL_LAPACK_LIBRARIES:STRING=${BLAS_LIB}"
-D TPL_BLAS_LIBRARIES:STRING=${BLAS_LIB} \
-D TPL_LAPACK_LIBRARIES:STRING=${BLAS_LIB}"
fi
fi

# Set compilers & compiler options
if [ ! -z "${CC}" ]; then
CONFOPTS="${CONFOPTS} \
-D CMAKE_C_COMPILER=${CC}"
fi

if [ ! -z "${CXX}" ]; then
CONFOPTS="${CONFOPTS} \
-D CMAKE_CXX_COMPILER=${CXX}"
fi
################################################################################
# TODO:
## Set compilers & compiler options
#if [ ! -z "${CC}" ]; then
# CONFOPTS="${CONFOPTS} \
# -D CMAKE_C_COMPILER=${CC}"
#fi
#
#if [ ! -z "${CXX}" ]; then
# CONFOPTS="${CONFOPTS} \
# -D CMAKE_CXX_COMPILER=${CXX}"
#fi
#
#if [ ! -z "${FC}" ]; then
# CONFOPTS="${CONFOPTS} \
# -D CMAKE_Fortran_COMPILER=${FC}"
#fi
#
#CONFOPTS="${CONFOPTS} \
# -D CMAKE_CXX_FLAGS:STRING='-fPIC -g -O3' \
# -D CMAKE_C_FLAGS:STRING='-fPIC -g -O3' \
# -D CMAKE_FORTRAN_FLAGS:STRING='-g -O3'"

if [ ! -z "${FC}" ]; then
CONFOPTS="${CONFOPTS} \
-D CMAKE_Fortran_COMPILER=${FC}"
fi

CONFOPTS="${CONFOPTS} \
-D CMAKE_CXX_FLAGS:STRING='-fPIC -g -O3' \
-D CMAKE_C_FLAGS:STRING='-fPIC -g -O3' \
-D CMAKE_FORTRAN_FLAGS:STRING='-g -O3'"
################################################################################
# External dependencies

# Add ParMETIS, if present
if [ ! -z "${PARMETIS_DIR}" ]; then
# ParMETIS
if [ -n "${PARMETIS_DIR}" ]; then
cecho ${INFO} "trilinos: configuration with ParMETIS"

# NOTE: if parmetis v4.0.3 is not found, but installed, add
# -D HAVE_PARMETIS_VERSION_4_0_3=ON"

CONFOPTS="${CONFOPTS} \
${TRILINOS_PARMETIS_CONFOPTS} \
-D TPL_ENABLE_ParMETIS:BOOL=ON \
-D TPL_ParMETIS_LIBRARIES:FILEPATH='${PARMETIS_DIR}/lib/libparmetis.${LDSUFFIX};${PARMETIS_DIR}/lib/libmetis.${LDSUFFIX}' \
-D TPL_ParMETIS_INCLUDE_DIRS:PATH=${PARMETIS_DIR}/include"
${TRILINOS_PARMETIS_CONFOPTS} \
-D TPL_ENABLE_ParMETIS:BOOL=ON \
-D TPL_ParMETIS_LIBRARIES:FILEPATH='${PARMETIS_DIR}/lib/libparmetis.${LDSUFFIX};${PARMETIS_DIR}/lib/libmetis.${LDSUFFIX}' \
-D TPL_ParMETIS_INCLUDE_DIRS:PATH=${PARMETIS_DIR}/include"
fi

# Add SuperLU_dist, if present
if [ ! -z "${SUPERLU_DIR}" ]; then
# SuperLU_dist
if [ -n "${SUPERLU_DIR}" ]; then
cecho ${INFO} "trilinos: configuration with SuperLU_dist"

CONFOPTS="${CONFOPTS} \
-D TPL_ENABLE_SuperLUDist:BOOL=ON \
-D TPL_SuperLUDist_LIBRARIES:FILEPATH=${SUPERLU_DIR}/lib/libsuperlu_dist.${LDSUFFIX} \
-D SuperLUDist_INCLUDE_DIRS:PATH=${SUPERLU_DIR}/include \
-D HAVE_SUPERLUDIST_LUSTRUCTINIT_2ARG:BOOL=ON \
-D HAVE_SUPERLUDIST_ENUM_NAMESPACE:BOOL=ON"
-D TPL_ENABLE_SuperLUDist:BOOL=ON \
-D SuperLUDist_LIBRARY_DIRS:PATH=${SUPERLU_DIR}/lib \
-D SuperLUDist_INCLUDE_DIRS:PATH=${SUPERLU_DIR}/include"
fi

#########################################################################

################################################################################
# General Trilinos configuration

# TODO: check them all:
CONFOPTS="\
-D TPL_ENABLE_MPI:BOOL=ON \
-D Trilinos_ENABLE_OpenMP:BOOL=OFF \
Expand All @@ -198,7 +179,6 @@ CONFOPTS="\
-D Trilinos_ENABLE_Ifpack:BOOL=ON \
-D Trilinos_ENABLE_Ifpack2:BOOL=OFF \
-D Trilinos_ENABLE_Tpetra:BOOL=ON \
-D Tpetra_INST_INT_LONG:BOOL=ON \
-D Trilinos_ENABLE_AztecOO:BOOL=ON \
-D Trilinos_ENABLE_Sacado:BOOL=ON \
-D Trilinos_ENABLE_Teuchos:BOOL=ON \
Expand All @@ -216,6 +196,7 @@ CONFOPTS="\
-D BUILD_SHARED_LIBS:BOOL=ON \
${CONFOPTS}"


if [ ${TRILINOS_WITH_COMPLEX} = ON ]; then
CONFOPTS="\
-D Trilinos_ENABLE_COMPLEX_DOUBLE=ON \
Expand All @@ -224,10 +205,19 @@ if [ ${TRILINOS_WITH_COMPLEX} = ON ]; then
${CONFOPTS}"
fi


# Trilinos 13 complains if multiple INT {long long; long} are set
CONFOPTS="${CONFOPTS} \
-D Tpetra_INST_INT_LONG_LONG:BOOL=ON \
-D Tpetra_INST_INT_LONG:BOOL=OFF"


# finally append user options:
CONFOPTS="${CONFOPTS} \
${TRILINOS_CONFOPTS}"
${TRILINOS_CONFOPTS}"


################################################################################
package_specific_register () {
export TRILINOS_DIR=${INSTALL_PATH}
}
Expand Down
Loading