summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJen Herting <jen@herting.cc>2020-10-02 15:10:49 -0400
committerGitHub <noreply@github.com>2020-10-02 12:10:49 -0700
commitc21a65b73aaf14c47c97866c2a2b5ba2b0a39ed6 (patch)
tree87dd4e7cff3d8b73c7beaba8495cabd2c6d9cc3a
parent145e3c721551c65b8e1c2845f22dcc00f7212529 (diff)
downloadspack-c21a65b73aaf14c47c97866c2a2b5ba2b0a39ed6.tar.gz
spack-c21a65b73aaf14c47c97866c2a2b5ba2b0a39ed6.tar.bz2
spack-c21a65b73aaf14c47c97866c2a2b5ba2b0a39ed6.tar.xz
spack-c21a65b73aaf14c47c97866c2a2b5ba2b0a39ed6.zip
New package: librmm (#19103)
-rw-r--r--var/spack/repos/builtin/packages/librmm/package.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/librmm/package.py b/var/spack/repos/builtin/packages/librmm/package.py
new file mode 100644
index 0000000000..69604ac0cb
--- /dev/null
+++ b/var/spack/repos/builtin/packages/librmm/package.py
@@ -0,0 +1,19 @@
+# Copyright 2013-2020 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 Librmm(CMakePackage):
+ """RMM: RAPIDS Memory Manager. Achieving optimal
+ performance in GPU-centric workflows frequently requires
+ customizing how host and device memory are allocated."""
+
+ homepage = "https://github.com/rapidsai/rmm"
+ url = "https://github.com/rapidsai/rmm/archive/v0.15.0.tar.gz"
+
+ version('0.15.0', sha256='599f97b95d169a90d11296814763f7e151a8a1e060ba10bc6c8f4684a5cd7972')
+
+ depends_on('cuda@9.0:')