New package: spiner (#29719)
* New package: spiner * Update dependencies for spiner package * Update var/spack/repos/builtin/packages/spiner/package.py Co-authored-by: Seth R. Johnson <johnsonsr@ornl.gov> * Update var/spack/repos/builtin/packages/spiner/package.py Co-authored-by: Seth R. Johnson <johnsonsr@ornl.gov> * Remove versions that can't be installed and use ports-of-call@1.1.0 Co-authored-by: Seth R. Johnson <johnsonsr@ornl.gov>
This commit is contained in:
parent
2856b29740
commit
5fe20b462c
77
var/spack/repos/builtin/packages/spiner/package.py
Normal file
77
var/spack/repos/builtin/packages/spiner/package.py
Normal file
@ -0,0 +1,77 @@
|
||||
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
|
||||
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
||||
#
|
||||
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
||||
|
||||
from spack import *
|
||||
|
||||
|
||||
class Spiner(CMakePackage, CudaPackage):
|
||||
"""Spiner:
|
||||
Performance portable routines for generic, tabulated, multi-dimensional data"""
|
||||
|
||||
homepage = "https://github.com/lanl/spiner"
|
||||
url = "https://github.com/lanl/spiner/archive/refs/tags/1.4.0.tar.gz"
|
||||
git = "https://github.com/lanl/spiner.git"
|
||||
|
||||
maintainers = ['rbberger']
|
||||
|
||||
version("main", branch="main")
|
||||
version('1.4.0', sha256='c3801b9eab26feabec33ff8c59e4056f384287f407d23faba010d354766f3ac5')
|
||||
|
||||
# When overriding/overloading varaints, the last variant is always used, except for
|
||||
# "when" clauses. Therefore, call the whens FIRST then the non-whens.
|
||||
# https://spack.readthedocs.io/en/latest/packaging_guide.html#overriding-variants
|
||||
variant("kokkos", default=False, description="Enable kokkos",)
|
||||
variant("openmp", default=False, description="Enable openmp kokkos backend")
|
||||
|
||||
variant("hdf5", default=False, description="Enable hdf5")
|
||||
variant("mpi", default=False, description="Support parallel hdf5")
|
||||
|
||||
variant("python", default=False, description="Python, Numpy & Matplotlib Support")
|
||||
variant("doc", default=False, description="Sphinx Documentation Support")
|
||||
variant("format", default=False, description="Clang-Format Support")
|
||||
|
||||
depends_on("cmake@3.12:")
|
||||
depends_on("catch2@2.13.4:2.13.6")
|
||||
depends_on("ports-of-call@1.1.0:")
|
||||
|
||||
# Currently the raw cuda backend of ports-of-call is not supported.
|
||||
depends_on("ports-of-call portability_strategy=Kokkos", when="+kokkos")
|
||||
depends_on("ports-of-call portability_strategy=None", when="~kokkos")
|
||||
for _flag in list(CudaPackage.cuda_arch_values):
|
||||
depends_on("kokkos@3.2.00: cuda_arch=" + _flag, when="+cuda+kokkos cuda_arch=" + _flag)
|
||||
for _flag in ("~cuda", "+cuda", "~openmp", "+openmp"):
|
||||
depends_on("kokkos@3.2.00: " + _flag, when="+kokkos" + _flag)
|
||||
depends_on("kokkos@3.2.00: ~shared+wrapper+cuda_lambda+cuda_relocatable_device_code", when="+cuda+kokkos")
|
||||
|
||||
depends_on("hdf5+hl~mpi", when="+hdf5~mpi")
|
||||
depends_on("hdf5+hl+mpi", when="+hdf5+mpi")
|
||||
|
||||
depends_on("python", when="+python")
|
||||
depends_on("py-numpy", when="+python")
|
||||
depends_on("py-matplotlib", when="+python")
|
||||
|
||||
depends_on("py-sphinx", when="+doc")
|
||||
depends_on("py-sphinx-rtd-theme@0.4.3", when="+doc")
|
||||
depends_on("py-sphinx-multiversion", when="+doc")
|
||||
|
||||
depends_on("llvm@12.0.0+clang", when="+format")
|
||||
|
||||
conflicts("+mpi", when="~hdf5")
|
||||
conflicts("+cuda", when="~kokkos")
|
||||
conflicts("+openmp", when="~kokkos")
|
||||
conflicts("cuda_arch=none", when="+cuda", msg="CUDA architecture is required")
|
||||
|
||||
def cmake_args(self):
|
||||
args = [
|
||||
self.define("BUILD_TESTING", self.run_tests),
|
||||
self.define_from_variant("SPINER_USE_KOKKOS", "kokkos"),
|
||||
self.define_from_variant("SPINER_USE_CUDA", "cuda"),
|
||||
self.define_from_variant("SPINER_USE_HDF", "hdf5")
|
||||
]
|
||||
if '+cuda' in self.spec:
|
||||
args.append(define(
|
||||
'CMAKE_CUDA_ARCHITECTURES', spec.variants['cuda_arch'].value
|
||||
))
|
||||
return args
|
Loading…
Reference in New Issue
Block a user