summaryrefslogtreecommitdiff
path: root/lib/spack/spack/compilers/rocmcc.py
blob: 07dc87b16da846ba94d961e4dbc2349a9d7374f2 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Copyright 2013-2023 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)

import re

import llnl.util.lang

import spack.compilers.clang


class Rocmcc(spack.compilers.clang.Clang):
    # Subclasses use possible names of C compiler
    cc_names = ["amdclang"]

    # Subclasses use possible names of C++ compiler
    cxx_names = ["amdclang++"]

    # Subclasses use possible names of Fortran 77 compiler
    f77_names = ["amdflang"]

    # Subclasses use possible names of Fortran 90 compiler
    fc_names = ["amdflang"]

    PrgEnv = "PrgEnv-amd"
    PrgEnv_compiler = "amd"

    @property
    def link_paths(self):
        link_paths = {
            "cc": "rocmcc/amdclang",
            "cxx": "rocmcc/amdclang++",
            "f77": "rocmcc/amdflang",
            "fc": "rocmcc/amdflang",
        }

        return link_paths

    @property
    def cxx11_flag(self):
        return "-std=c++11"

    @property
    def cxx14_flag(self):
        return "-std=c++14"

    @property
    def cxx17_flag(self):
        return "-std=c++17"

    @property
    def c99_flag(self):
        return "-std=c99"

    @property
    def c11_flag(self):
        return "-std=c11"

    @classmethod
    @llnl.util.lang.memoized
    def extract_version_from_output(cls, output):
        match = re.search(r"llvm-project roc-(\d+)[._](\d+)[._](\d+)", output)
        if match:
            return ".".join(match.groups())

    @classmethod
    def fc_version(cls, fortran_compiler):
        return cls.default_version(fortran_compiler)

    @classmethod
    def f77_version(cls, f77):
        return cls.fc_version(f77)

    @property
    def stdcxx_libs(self):
        return ("-lstdc++",)