summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/amd-aocl/package.py
blob: b37da1b9cb7eb90220a8455c71bfe8ac059e31e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Copyright 2013-2024 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.package import *


class AmdAocl(BundlePackage):
    """AMD Optimizing CPU Libraries (AOCL) - AOCL is a set of numerical
    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

    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/eula/aocl-4-1-eula.html
    """

    homepage = "https://developer.amd.com/amd-aocl/"

    maintainers("amd-toolchain-support")

    version("4.1")
    version("4.0")
    version("3.2")
    version("3.1")
    version("3.0")
    version("2.2")

    variant("openmp", default=False, description="Enable OpenMP support.")

    with when("+openmp"):
        depends_on("amdblis threads=openmp")
        depends_on("amdfftw +openmp")
        depends_on("amdlibflame threads=openmp")

    with when("~openmp"):
        depends_on("amdblis threads=none")
        depends_on("amdfftw ~openmp")
        depends_on("amdlibflame threads=none")

    for vers in ("2.2", "3.0", "3.1", "3.2", "4.0", "4.1"):
        with when(f"@{vers}"):
            depends_on(f"amdblis@{vers}")
            depends_on(f"amdfftw@{vers}")
            depends_on(f"amdlibflame@{vers}")
            depends_on(f"amdlibm@{vers}")
            depends_on(f"amdscalapack@{vers}")
            depends_on(f"aocl-sparse@{vers}")