aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/dependencies/scalapack.py
blob: 4057091dde5428e8000eab04871c87772db84cda (plain)
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# Copyright 2013-2019 The Meson development team

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at

#     http://www.apache.org/licenses/LICENSE-2.0

# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from pathlib import Path
import os

from .. import mesonlib
from .base import (CMakeDependency, ExternalDependency, PkgConfigDependency)


class ScalapackDependency(ExternalDependency):
    def __init__(self, environment, kwargs: dict):
        language = kwargs.get('language')
        super().__init__('scalapack', environment, language, kwargs)
        kwargs['required'] = False
        kwargs['silent'] = True
        self.is_found = False
        self.static = kwargs.get('static', False)

        # 1. try pkg-config
        pkgconfig_files = []
        mklroot = None
        is_gcc = None
        if language == 'fortran':
            is_gcc = environment.detect_fortran_compiler(self.for_machine).get_id() == 'gcc'
        elif language == 'c':
            is_gcc = environment.detect_c_compiler(self.for_machine).get_id() == 'gcc'
        elif language == 'cpp':
            is_gcc = environment.detect_cpp_compiler(self.for_machine).get_id() == 'gcc'
        # Intel MKL works with non-Intel compilers too -- but not gcc on windows
        if 'MKLROOT' in os.environ and not (mesonlib.is_windows() and is_gcc):
            try:
                mklroot = Path(os.environ['MKLROOT']).resolve()
            except Exception:
                pass
        if mklroot is not None:
            # MKL pkg-config is a start, but you have to add / change stuff
            # https://software.intel.com/en-us/articles/intel-math-kernel-library-intel-mkl-and-pkg-config-tool
            pkgconfig_files = (
                ['mkl-static-lp64-iomp'] if self.static else ['mkl-dynamic-lp64-iomp']
            )
            if mesonlib.is_windows():
                suffix = '.lib'
            elif self.static:
                suffix = '.a'
            else:
                suffix = ''
            libdir = mklroot / 'lib/intel64'
        # Intel compiler might not have Parallel Suite
        pkgconfig_files += ['scalapack-openmpi', 'scalapack']

        for pkg in pkgconfig_files:
            pkgdep = PkgConfigDependency(
                pkg, environment, kwargs, language=self.language
            )
            if pkgdep.found():
                self.compile_args = pkgdep.get_compile_args()
                if mklroot:
                    link_args = pkgdep.get_link_args()
                    if is_gcc:
                        for i, a in enumerate(link_args):
                            if 'mkl_intel_lp64' in a:
                                link_args[i] = a.replace('intel', 'gf')
                                break
                    # MKL pkg-config omits scalapack
                    # be sure "-L" and "-Wl" are first if present
                    i = 0
                    for j, a in enumerate(link_args):
                        if a.startswith(('-L', '-Wl')):
                            i = j + 1
                        elif j > 3:
                            break
                    if mesonlib.is_windows() or self.static:
                        link_args.insert(
                            i, str(libdir / ('mkl_scalapack_lp64' + suffix))
                        )
                        link_args.insert(
                            i + 1, str(libdir / ('mkl_blacs_intelmpi_lp64' + suffix))
                        )
                    else:
                        link_args.insert(i, '-lmkl_scalapack_lp64')
                        link_args.insert(i + 1, '-lmkl_blacs_intelmpi_lp64')
                else:
                    link_args = pkgdep.get_link_args()
                self.link_args = link_args

                self.version = pkgdep.get_version()
                if self.version == 'unknown' and mklroot:
                    try:
                        v = (
                            mklroot.as_posix()
                            .split('compilers_and_libraries_')[1]
                            .split('/', 1)[0]
                        )
                        if v:
                            self.version = v
                    except IndexError:
                        pass

                self.is_found = True
                self.pcdep = pkgdep
                return
        # 2. try CMake
        cmakedep = CMakeDependency('Scalapack', environment, kwargs)
        if cmakedep.found():
            self.compile_args = cmakedep.get_compile_args()
            self.link_args = cmakedep.get_link_args()
            self.version = cmakedep.get_version()
            self.is_found = True
            return