123 lines
4.7 KiB
Python
123 lines
4.7 KiB
Python
# Copyright Spack Project Developers. See COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class BigdftChess(AutotoolsPackage, CudaPackage):
|
|
"""BigDFT-CheSS: A module for performing Fermi Operator Expansions
|
|
via Chebyshev Polynomials."""
|
|
|
|
homepage = "https://bigdft.org/"
|
|
url = "https://gitlab.com/l_sim/bigdft-suite/-/archive/1.9.2/bigdft-suite-1.9.2.tar.gz"
|
|
git = "https://gitlab.com/l_sim/bigdft-suite.git"
|
|
|
|
version("develop", branch="devel")
|
|
version("1.9.5", sha256="5fe51e92bb746569207295feebbcd154ce4f1b364a3981bace75c45e983b2741")
|
|
version("1.9.4", sha256="fa22115e6353e553d2277bf054eb73a4710e92dfeb1ed9c5bf245337187f393d")
|
|
version("1.9.3", sha256="f5f3da95d7552219f94366b4d2a524b2beac988fb2921673a65a128f9a8f0489")
|
|
version("1.9.2", sha256="dc9e49b68f122a9886fa0ef09970f62e7ba21bb9ab1b86be9b7d7e22ed8fbe0f")
|
|
version("1.9.1", sha256="3c334da26d2a201b572579fc1a7f8caad1cbf971e848a3e10d83bc4dc8c82e41")
|
|
version("1.9.0", sha256="4500e505f5a29d213f678a91d00a10fef9dc00860ea4b3edf9280f33ed0d1ac8")
|
|
|
|
depends_on("c", type="build") # generated
|
|
depends_on("cxx", type="build") # generated
|
|
depends_on("fortran", type="build") # generated
|
|
|
|
variant("mpi", default=True, description="Enable MPI support")
|
|
variant("openmp", default=True, description="Enable OpenMP support")
|
|
variant("scalapack", default=True, description="Enable SCALAPACK support")
|
|
variant("ntpoly", default=True, description="Option to use NTPoly")
|
|
variant(
|
|
"shared", default=True, description="Build shared libraries"
|
|
) # Not default in bigdft, but is typically the default expectation
|
|
# variant('minpack', default=False, description='Give the link-line for MINPACK')
|
|
|
|
depends_on("autoconf", type="build")
|
|
depends_on("automake", type="build")
|
|
depends_on("libtool", type="build")
|
|
depends_on("pkgconfig", type="build")
|
|
|
|
depends_on("python@3.0:", type=("build", "run"))
|
|
|
|
depends_on("blas")
|
|
depends_on("lapack")
|
|
depends_on("py-pyyaml")
|
|
depends_on("mpi", when="+mpi")
|
|
depends_on("scalapack", when="+scalapack")
|
|
|
|
depends_on("ntpoly@:2", when="@:1.9.3")
|
|
depends_on("ntpoly@3:", when="@1.9.4:")
|
|
|
|
for vers in ["1.9.0", "1.9.1", "1.9.2", "1.9.3", "1.9.4", "1.9.5", "develop"]:
|
|
depends_on(f"bigdft-futile@{vers}", when=f"@{vers}")
|
|
depends_on(f"bigdft-atlab@{vers}", when=f"@{vers}")
|
|
|
|
configure_directory = "chess"
|
|
|
|
def configure_args(self):
|
|
spec = self.spec
|
|
prefix = self.prefix
|
|
|
|
python_version = spec["python"].version.up_to(2)
|
|
pyyaml = join_path(spec["py-pyyaml"].prefix.lib, f"python{python_version}")
|
|
|
|
openmp_flag = []
|
|
if spec.satisfies("+openmp"):
|
|
openmp_flag.append(self.compiler.openmp_flag)
|
|
|
|
linalg = []
|
|
if spec.satisfies("+scalapack"):
|
|
linalg.append(spec["scalapack"].libs.ld_flags)
|
|
linalg.append(spec["lapack"].libs.ld_flags)
|
|
linalg.append(spec["blas"].libs.ld_flags)
|
|
|
|
args = [
|
|
f"FCFLAGS={' '.join(openmp_flag)}",
|
|
f"LDFLAGS={' '.join(linalg)}",
|
|
f"--with-ext-linalg={' '.join(linalg)}",
|
|
f"--with-pyyaml-path={pyyaml}",
|
|
f"--with-futile-libs={spec['bigdft-futile'].libs.ld_flags}",
|
|
f"--with-futile-incs={spec['bigdft-futile'].headers.include_flags}",
|
|
f"--with-moduledir={prefix.include}",
|
|
f"--prefix={prefix}",
|
|
"--without-etsf-io",
|
|
]
|
|
if spec.satisfies("+shared"):
|
|
args.append("--enable-dynamic-libraries")
|
|
|
|
if spec.satisfies("+mpi"):
|
|
args.append(f"CC={spec['mpi'].mpicc}")
|
|
args.append(f"CXX={spec['mpi'].mpicxx}")
|
|
args.append(f"FC={spec['mpi'].mpifc}")
|
|
args.append(f"F90={spec['mpi'].mpifc}")
|
|
args.append(f"F77={spec['mpi'].mpif77}")
|
|
else:
|
|
args.append("--disable-mpi")
|
|
|
|
if spec.satisfies("+openmp"):
|
|
args.append("--with-openmp")
|
|
else:
|
|
args.append("--without-openmp")
|
|
|
|
args.append(f"--with-atlab-libs={spec['bigdft-atlab'].prefix.lib}")
|
|
|
|
if spec.satisfies("+cuda"):
|
|
args.append("--enable-cuda-gpu")
|
|
args.append(f"--with-cuda-path={spec['cuda'].prefix}")
|
|
args.append(f"--with-cuda-libs={spec['cuda'].libs.link_flags}")
|
|
|
|
if spec.satisfies("+minpack"):
|
|
args.append("--with-minpack")
|
|
|
|
if spec.satisfies("+ntpoly"):
|
|
args.append("--enable-ntpoly")
|
|
|
|
return args
|
|
|
|
@property
|
|
def libs(self):
|
|
shared = "+shared" in self.spec
|
|
return find_libraries("libCheSS-*", root=self.prefix, shared=shared, recursive=True)
|