summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/miopen-tensile/package.py
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2023-08-08 09:29:49 -0500
committerGitHub <noreply@github.com>2023-08-08 09:29:49 -0500
commit361632fc4be915651fe5751bf499c069b3ca168c (patch)
treec6637d8cc0067ab5e1e1b26cca0d83376df8f647 /var/spack/repos/builtin/packages/miopen-tensile/package.py
parent6576655137b847af102ebcea20278a6d4f9f09e7 (diff)
downloadspack-361632fc4be915651fe5751bf499c069b3ca168c.tar.gz
spack-361632fc4be915651fe5751bf499c069b3ca168c.tar.bz2
spack-361632fc4be915651fe5751bf499c069b3ca168c.tar.xz
spack-361632fc4be915651fe5751bf499c069b3ca168c.zip
Ensure that all variants have a description (#39025)
* Ensure that all variants have a description * Update mock packages too * Fix test invocations * Black fix * mgard: update variant descriptions * flake8 fix * black fix * Add to audit tests * Relax type hints * Older Python support * Undo all changes to mock packages * Flake8 fix
Diffstat (limited to 'var/spack/repos/builtin/packages/miopen-tensile/package.py')
-rw-r--r--var/spack/repos/builtin/packages/miopen-tensile/package.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/miopen-tensile/package.py b/var/spack/repos/builtin/packages/miopen-tensile/package.py
index 9ffbfcad0d..eb55997210 100644
--- a/var/spack/repos/builtin/packages/miopen-tensile/package.py
+++ b/var/spack/repos/builtin/packages/miopen-tensile/package.py
@@ -44,7 +44,13 @@ class MiopenTensile(CMakePackage):
tensile_architecture = ("all", "gfx906", "gfx908", "gfx803", "gfx900")
- variant("tensile_architecture", default="all", values=tensile_architecture, multi=True)
+ variant(
+ "tensile_architecture",
+ default="all",
+ description="AMD GPU architecture",
+ values=tensile_architecture,
+ multi=True,
+ )
variant(
"build_type",
default="Release",