diff options
author | Nils Vu <owls@nilsvu.de> | 2022-02-23 20:25:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-23 11:25:25 -0800 |
commit | 9fef13ce95701449e467d1de5c5b1254f4cdfabc (patch) | |
tree | 3b946325983860bd467030e58a102d96ef6f6283 /var | |
parent | e4ba7bb044f06c766152a27ba22f41867a52e9dc (diff) | |
download | spack-9fef13ce95701449e467d1de5c5b1254f4cdfabc.tar.gz spack-9fef13ce95701449e467d1de5c5b1254f4cdfabc.tar.bz2 spack-9fef13ce95701449e467d1de5c5b1254f4cdfabc.tar.xz spack-9fef13ce95701449e467d1de5c5b1254f4cdfabc.zip |
blaze package: add blas/lapack/smp variants (#29010)
Also:
* spectre: disable blaze+blas in earlier versions
* cblas: fix a broken URL link
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/blaze/package.py | 58 | ||||
-rw-r--r-- | var/spack/repos/builtin/packages/cblas/package.py | 2 | ||||
-rw-r--r-- | var/spack/repos/builtin/packages/spectre/package.py | 5 |
3 files changed, 61 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/blaze/package.py b/var/spack/repos/builtin/packages/blaze/package.py index 8d137d64f5..7ceb1b8e7f 100644 --- a/var/spack/repos/builtin/packages/blaze/package.py +++ b/var/spack/repos/builtin/packages/blaze/package.py @@ -19,9 +19,7 @@ class Blaze(CMakePackage): url = "https://bitbucket.org/blaze-lib/blaze/downloads/blaze-3.8.tar.gz" git = "https://bitbucket.org/blaze-lib/blaze.git" - # Blaze requires at least cmake 3.8.0 for C++14 features. - depends_on('cmake@3.8.0:', type='build') - depends_on('blas') + maintainers = ['nilsvu'] version('master', branch='master') version('3.8', sha256='dfaae1a3a9fea0b3cc92e78c9858dcc6c93301d59f67de5d388a3a41c8a629ae') @@ -46,3 +44,57 @@ class Blaze(CMakePackage): version('1.2', sha256='16f56d4f61dca229fa7e17a0d1e348a1f3246c65cded2df5db33babebf8f9b9d') version('1.1', sha256='6add20eb9c176ea9f8091c49b101f46d1a1a6bd9c31553a6eff5e53603f0527f') version('1.0', sha256='ee13cfd467c1a4b0fe7cc58b61b846eae862167a90dd2e60559626a30418b5a3') + + # These configuration options set defaults for dependent packages and + # control Blaze dependencies. They can also be enabled or disabled with + # compiler flags later by dependent packages, since Blaze is a header-only + # library. + # - BLAS mode is turned off by default in the Blaze CMake configuration (as + # of v3.8), so we turn it off by default here as well. + variant('blas', default=False, description='Enable BLAS kernels') + # - LAPACK is only a link-time dependency, but Blaze provides a CMake + # configuration check. It is enabled by default in the Blaze CMake + # configuration (as of v3.8). + variant('lapack', default=True, description='Enable LAPACK kernels') + # - SMP mode is set to OpenMP by default in the Blaze CMake configuration + # (as of v3.8), but isn't a required dependency. + variant('smp', values=['none', 'openmp', 'cpp11', 'boost', 'hpx'], + default='openmp', description='Shared memory parallelization mode') + + # Blaze requires at least cmake 3.8.0 for C++14 features. + depends_on('cmake@3.8.0:', type='build') + depends_on('blas', when='+blas') + depends_on('lapack', when='+lapack') + depends_on('boost@1.54.0: +thread', when='smp=boost') + depends_on('hpx', when='smp=hpx') + + def cmake_args(self): + args = [ + self.define_from_variant('BLAZE_BLAS_MODE', 'blas'), + # These flags can be set at compile time, but it would be useful to + # determine them from the BLAS provider if possible and pass them to + # the CMake configuration: + # - BLAZE_BLAS_IS_64BIT + # - BLAZE_BLAS_IS_PARALLEL + # The name of the header file is particularly important because + # builds will fail if `BLAZE_BLAS_MODE` is enabled but the header + # file is missing: + # - BLAZE_BLAS_INCLUDE_FILE (defaults to <cblas.h>) + self.define_from_variant('USE_LAPACK', 'lapack'), + ] + + # SMP mode + if self.spec.variants['smp'].value == 'none': + args.append(self.define('BLAZE_SHARED_MEMORY_PARALLELIZATION', False)) + else: + args.extend([ + self.define('BLAZE_SHARED_MEMORY_PARALLELIZATION', True), + self.define('BLAZE_SMP_THREADS', { + 'openmp': 'OpenMP', + 'cpp11': 'C++11', + 'boost': 'Boost', + 'hpx': 'HPX', + }[self.spec.variants['smp'].value]) + ]) + + return args diff --git a/var/spack/repos/builtin/packages/cblas/package.py b/var/spack/repos/builtin/packages/cblas/package.py index f0d5c3818c..93981fddae 100644 --- a/var/spack/repos/builtin/packages/cblas/package.py +++ b/var/spack/repos/builtin/packages/cblas/package.py @@ -11,7 +11,7 @@ class Cblas(Package): provide standard building blocks for performing basic vector and matrix operations.""" - homepage = "http://www.netlib.org/blas/_cblas/" + homepage = "http://www.netlib.org/blas/#_cblas" # tarball has no version, but on the date below, this MD5 was correct. version('2015-06-06', sha256='0f6354fd67fabd909baf57ced2ef84e962db58fae126e4f41b21dd4fec60a2a3', diff --git a/var/spack/repos/builtin/packages/spectre/package.py b/var/spack/repos/builtin/packages/spectre/package.py index 3273afb98c..bed9debdf0 100644 --- a/var/spack/repos/builtin/packages/spectre/package.py +++ b/var/spack/repos/builtin/packages/spectre/package.py @@ -124,6 +124,11 @@ class Spectre(CMakePackage): # - Shared libs builds on macOS don't work before # https://github.com/sxs-collaboration/spectre/pull/2680 conflicts('+shared', when='@:2022.01.03 platform=darwin') + # - Blaze with `BLAZE_BLAS_MODE` enabled doesn't work before + # https://github.com/sxs-collaboration/spectre/pull/3806 because it + # doesn't find the BLAS header. Also, we haven't tested Blaze with BLAS + # kernels before then. + conflicts('^blaze+blas', when='@:2022.02.17') # These patches backport updates to the SpECTRE build system to earlier # releases, to support installing them with Spack. In particular, we try to |