summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/amd-aocl/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/amd-aocl/package.py')
-rw-r--r--var/spack/repos/builtin/packages/amd-aocl/package.py12
1 files changed, 10 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/amd-aocl/package.py b/var/spack/repos/builtin/packages/amd-aocl/package.py
index 698f616813..4a3c242c07 100644
--- a/var/spack/repos/builtin/packages/amd-aocl/package.py
+++ b/var/spack/repos/builtin/packages/amd-aocl/package.py
@@ -11,12 +11,20 @@ class AmdAocl(BundlePackage):
libraries tuned specifically for AMD EPYC processor family. They have a
simple interface to take advantage of the latest hardware innovations.
The tuned implementations of industry standard math libraries enable
- fast development of scientific and high performance computing projects"""
+ fast development of scientific and high performance computing projects
+
+ LICENSING INFORMATION: By downloading, installing and using this software,
+ you agree to the terms and conditions of the AMD AOCL license agreement.
+ You may obtain a copy of this license agreement from
+ https://www.amd.com/en/developer/aocl/aocl-eula.html
+ https://www.amd.com/en/developer/aocl/aocl-4-0-eula.html
+ """
homepage = "https://developer.amd.com/amd-aocl/"
maintainers = ["amd-toolchain-support"]
+ version("4.0")
version("3.2")
version("3.1")
version("3.0")
@@ -24,7 +32,7 @@ class AmdAocl(BundlePackage):
variant("openmp", default=False, description="Enable OpenMP support.")
- for vers in ["2.2", "3.0", "3.1", "3.2"]:
+ for vers in ["2.2", "3.0", "3.1", "3.2", "4.0"]:
depends_on("amdblis@{0} threads=openmp".format(vers), when="@{0} +openmp".format(vers))
depends_on("amdblis@{0} threads=none".format(vers), when="@{0} ~openmp".format(vers))
depends_on("amdfftw@{0} +openmp".format(vers), when="@{0} +openmp".format(vers))