summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorRichard Berger <rberger@lanl.gov>2022-03-28 15:22:46 -0400
committerGitHub <noreply@github.com>2022-03-28 13:22:46 -0600
commit5fe20b462c86af942266078ce0b311ef42e584bf (patch)
tree35459399df7d92126dcb6256eed36be171a0ff16 /var
parent2856b2974022ff0a3272d6f9ab6c7ffa868ab7ff (diff)
downloadspack-5fe20b462c86af942266078ce0b311ef42e584bf.tar.gz
spack-5fe20b462c86af942266078ce0b311ef42e584bf.tar.bz2
spack-5fe20b462c86af942266078ce0b311ef42e584bf.tar.xz
spack-5fe20b462c86af942266078ce0b311ef42e584bf.zip
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>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/spiner/package.py77
1 files changed, 77 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/spiner/package.py b/var/spack/repos/builtin/packages/spiner/package.py
new file mode 100644
index 0000000000..8eb46f6ef6
--- /dev/null
+++ b/var/spack/repos/builtin/packages/spiner/package.py
@@ -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