spack/var/spack/repos/builtin/packages/plasma/package.py
Piotr Luszczek bbdb033e5f Add patches to work around CMake versions (#12744)
- Use of symbol testing macro requires explicit include()
- CMake policies are not version-portable and the support has to queried
  based on CMake version
2019-09-07 19:04:20 -05:00

144 lines
5.2 KiB
Python

# Copyright 2013-2019 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 import *
class Plasma(CMakePackage):
"""Parallel Linear Algebra Software for Multicore Architectures, PLASMA is
a software package for solving problems in dense linear algebra using
multicore processors and Xeon Phi coprocessors. PLASMA provides
implementations of state-of-the-art algorithms using cutting-edge task
scheduling techniques. PLASMA currently offers a collection of routines for
solving linear systems of equations, least squares problems, eigenvalue
problems, and singular value problems."""
homepage = "https://bitbucket.org/icl/plasma/"
url = "https://bitbucket.org/icl/plasma/downloads/plasma-18.11.0.tar.gz"
hg = "https://luszczek@bitbucket.org/icl/plasma"
maintainers = ['luszczek']
version("develop", hg=hg)
version("19.8.1", sha256="3a5db6eabf91aec782b7f27b17a7f6b8ce2c9d8e648c0e9c0ff5d87277ba4d17")
version("19.8.0", sha256="19a950ade8a7c8d082f372789c9f874274a63217ecff26e33f366402f060f071")
version("18.11.1", sha256="0581cc8b1188932fd9c29bd258ffe2dc8fb26b1530c5dc3d91f8de369e44edbc")
version("18.11.0", sha256="36501488be5b4b2b973524824e1afd27779d37addfeeb34c1871ba753b6c06bf")
version("18.10.0", sha256="93dceae93f57a2fbd79b85d2fbf7907d1d32e158b8d1d93892d9ff3df9963210")
version("18.9.0", sha256="753eae28ea48986a2cc7b8204d6eef646584541e59d42c3c94fa9879116b0774")
version("17.1",
sha256="d4b89f7c3d240a69dfe986284a14471eec4830b9e352ae902ea8861f15573dee",
url="https://bitbucket.org/icl/plasma/downloads/plasma-17.1.tar.gz")
variant("shared", default=True,
description="Build shared library (disables static library)")
variant("lua", default=False,
description="Build Lua support for tuning tile sizes")
depends_on("lua", when="+lua")
depends_on("blas")
depends_on("lapack")
conflicts("atlas") # does not have LAPACKE interface
# missing LAPACKE features and/or CBLAS headers
conflicts("netlib-lapack@:3.5.999")
# clashes with OpenBLAS declarations and has a problem compiling on its own
conflicts("cblas")
conflicts("openblas-with-lapack") # incomplete LAPACK implementation
conflicts("veclibfort")
# only GCC 4.9+ and higher have sufficient support for OpenMP 4+ tasks+deps
conflicts("%gcc@:4.8.99", when='@:17.1')
# only GCC 6.0+ and higher have for OpenMP 4+ Clause "priority"
conflicts("%gcc@:5.99", when='@17.2:')
conflicts("%cce")
conflicts("%clang")
conflicts("%intel")
conflicts("%nag")
conflicts("%pgi")
conflicts("%xl")
conflicts("%xl_r")
patch("remove_absolute_mkl_include.patch", when="@17.1")
patch("protect_cmake_version.patch", when="@19.8.0:19.8.9")
patch("fix_cmake_include.patch", when="@19.8.0:19.8.9")
@when("@18.9.0:")
def cmake_args(self):
options = list()
options.extend([
"-DBLAS_LIBRARIES=%s" % self.spec["blas"].libs.joined(";"),
"-DLAPACK_LIBRARIES=%s" % self.spec["lapack"].libs.joined(";")
])
options += [
"-DBUILD_SHARED_LIBS=%s" %
('ON' if ('+shared' in self.spec) else 'OFF')
]
for package, provider in (
("openblas", "openblas"),
("intel-mkl", "mkl"),
("netlib-lapack", "netlib"),
):
if package in self.spec:
for lib in ("CBLAS", "LAPACKE"):
options.append("-D%s_PROVIDER=%s" % (lib, provider))
if "lua" in self.spec:
options.append("-DPLASMA_DETECT_LUA=TRUE")
return options
# Before 18.9.0 it was an Makefile package
@when("@:17.1")
def cmake(self, spec, prefix):
pass
# Before 18.9.0 it was an Makefile package
@when("@:17.1")
def build(self, spec, prefix):
pass
# Before 18.9.0 it was an Makefile package
@when("@:17.1")
def install(self, spec, prefix):
self.edit(spec, prefix)
make()
make("install")
@when("@:17.1")
def edit(self, spec, prefix):
# copy "make.inc.mkl-gcc" provided by default into "make.inc"
open("make.inc", "w").write(open("make.inc.mkl-gcc").read())
make_inc = FileFilter("make.inc")
if not spec.satisfies("^intel-mkl"):
make_inc.filter("-DPLASMA_WITH_MKL", "") # not using MKL
make_inc.filter("LIBS *= *.*", "LIBS = " +
self.spec["blas"].libs.ld_flags + " -lm")
header_flags = ""
# accumulate CPP flags for headers: <cblas.h> and <lapacke.h>
for dep in ("blas", "lapack"):
try: # in case the dependency does not provide header flags
header_flags += " " + spec[dep].headers.cpp_flags
except AttributeError:
pass
make_inc.filter("CFLAGS +[+]=", "CFLAGS += " + header_flags + " ")
# pass prefix variable from "make.inc" to "Makefile"
make_inc.filter("# --*", "prefix={0}".format(self.prefix))
# make sure CC variable comes from build environment
make_inc.filter("CC *[?]*= * .*cc", "")