summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorDan Bonachea <dobonachea@lbl.gov>2022-05-11 00:45:32 -0400
committerGitHub <noreply@github.com>2022-05-10 22:45:32 -0600
commitee9b61be7ad968d07a119cf8ce7a1a9a3da40205 (patch)
treef641749b0bbf8936aa0715fd1c4934edadf588c5 /var
parentbe45292a9c7139984c4929a35a7db19265543ff5 (diff)
downloadspack-ee9b61be7ad968d07a119cf8ce7a1a9a3da40205.tar.gz
spack-ee9b61be7ad968d07a119cf8ce7a1a9a3da40205.tar.bz2
spack-ee9b61be7ad968d07a119cf8ce7a1a9a3da40205.tar.xz
spack-ee9b61be7ad968d07a119cf8ce7a1a9a3da40205.zip
upcxx,gasnet: Add a note to the `+cuda` variant description (#30602)
Resolves issue #30589
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/gasnet/package.py3
-rw-r--r--var/spack/repos/builtin/packages/upcxx/package.py3
2 files changed, 4 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/gasnet/package.py b/var/spack/repos/builtin/packages/gasnet/package.py
index 70679d55d2..a886d75270 100644
--- a/var/spack/repos/builtin/packages/gasnet/package.py
+++ b/var/spack/repos/builtin/packages/gasnet/package.py
@@ -61,7 +61,8 @@ class Gasnet(Package, CudaPackage, ROCmPackage):
variant('debug', default=False, description="Enable library debugging mode")
variant('cuda', default=False,
- description='Enables support for the CUDA memory kind in some conduits')
+ description='Enables support for the CUDA memory kind in some conduits.\n' +
+ 'NOTE: Requires CUDA Driver library be present on the build system')
variant('rocm', default=False,
description='Enables support for the ROCm/HIP memory kind in some conduits')
diff --git a/var/spack/repos/builtin/packages/upcxx/package.py b/var/spack/repos/builtin/packages/upcxx/package.py
index dfd7fbe304..cbbc93285d 100644
--- a/var/spack/repos/builtin/packages/upcxx/package.py
+++ b/var/spack/repos/builtin/packages/upcxx/package.py
@@ -60,7 +60,8 @@ class Upcxx(Package, CudaPackage, ROCmPackage):
description='Enables MPI-based spawners and mpi-conduit')
variant('cuda', default=False,
- description='Enables UPC++ support for the CUDA memory kind')
+ description='Enables UPC++ support for the CUDA memory kind.\n' +
+ 'NOTE: Requires CUDA Driver library be present on the build system')
variant('rocm', default=False,
description='Enables UPC++ support for the ROCm/HIP memory kind')