summaryrefslogtreecommitdiff
path: root/lib/spack/spack/compilers/nvhpc.py
blob: 8fba575472da3de27818994a863abf524349ed3f (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# 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 os

from spack.compiler import Compiler


class Nvhpc(Compiler):
    # Subclasses use possible names of C compiler
    cc_names = ["nvc"]

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

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

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

    # Named wrapper links within build_env_path
    link_paths = {
        "cc": os.path.join("nvhpc", "nvc"),
        "cxx": os.path.join("nvhpc", "nvc++"),
        "f77": os.path.join("nvhpc", "nvfortran"),
        "fc": os.path.join("nvhpc", "nvfortran"),
    }

    PrgEnv = "PrgEnv-nvhpc"
    PrgEnv_compiler = "nvhpc"

    version_argument = "--version"
    version_regex = r"nv[^ ]* (?:[^ ]+ Dev-r)?([0-9.]+)(?:-[0-9]+)?"

    @property
    def verbose_flag(self):
        return "-v"

    @property
    def debug_flags(self):
        return ["-g", "-gopt"]

    @property
    def opt_flags(self):
        return ["-O", "-O0", "-O1", "-O2", "-O3", "-O4"]

    @property
    def openmp_flag(self):
        return "-mp"

    @property
    def cc_pic_flag(self):
        return "-fpic"

    @property
    def cxx_pic_flag(self):
        return "-fpic"

    @property
    def f77_pic_flag(self):
        return "-fpic"

    @property
    def fc_pic_flag(self):
        return "-fpic"

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

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

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

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

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

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

    required_libs = ["libnvc", "libnvf"]