
Explicitly import package utilities in all packages, and corresponding fallout. This includes: * rename `spack.package` to `spack.package_base` * rename `spack.pkgkit` to `spack.package` * update all packages in builtin, builtin_mock and tutorials to include `from spack.package import *` * update spack style * ensure packages include the import * automatically add the new import and remove any/all imports of `spack` and `spack.pkgkit` from packages when using `--fix` * add support for type-checking packages with mypy when SPACK_MYPY_CHECK_PACKAGES is set in the environment * fix all type checking errors in packages in spack upstream * update spack create to include the new imports * update spack repo to inject the new import, injection persists to allow for a deprecation period Original message below: As requested @adamjstewart, update all packages to use pkgkit. I ended up using isort to do this, so repro is easy: ```console $ isort -a 'from spack.pkgkit import *' --rm 'spack' ./var/spack/repos/builtin/packages/*/package.py $ spack style --fix ``` There were several line spacing fixups caused either by space manipulation in isort or by packages that haven't been touched since we added requirements, but there are no functional changes in here. * [x] add config to isort to make sure this is maintained going forward
75 lines
2.7 KiB
Python
75 lines
2.7 KiB
Python
# Copyright 2013-2022 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.package import *
|
|
|
|
|
|
class Cbench(MakefilePackage):
|
|
"""Cbench is intended as a relatively straightforward toolbox of tests,
|
|
benchmarks, applications, utilities, and framework to hold them together
|
|
with the goal to facilitate scalable testing, benchmarking, and analysis
|
|
of a Linux parallel compute cluster."""
|
|
|
|
homepage = "https://sourceforge.net/projects/cbench/"
|
|
url = "https://sourceforge.net/projects/cbench/files/cbench/1.3.0/cbench_release_1.3.0.tar.gz/download"
|
|
list_url = "https://sourceforge.net/projects/cbench/files/cbench/"
|
|
list_depth = 1
|
|
|
|
version('1.3.0', sha256='b40fdafd14869b86819e5906a107b0735290a1e58bae229d8166514a72f58732')
|
|
|
|
depends_on('mpi')
|
|
depends_on('blas')
|
|
depends_on('lapack')
|
|
depends_on('fftw')
|
|
|
|
# The following compilers are not supported by Cbench:
|
|
conflicts('%cce')
|
|
conflicts('%apple-clang')
|
|
conflicts('%clang')
|
|
conflicts('%nag')
|
|
conflicts('%xl')
|
|
conflicts('%xl_r')
|
|
|
|
def setup_build_environment(self, env):
|
|
# The location of the Cbench source tree
|
|
env.set('CBENCHOME', self.stage.source_path)
|
|
|
|
# The location that will contain all of your tests and their results
|
|
env.set('CBENCHTEST', self.prefix)
|
|
|
|
# The location of the system MPI tree
|
|
env.set('MPIHOME', self.spec['mpi'].prefix)
|
|
|
|
# Pick the compiler collection/chain you want to compile with.
|
|
# Examples include: intel, gcc, pgi.
|
|
env.set('COMPILERCOLLECTION', self.compiler.name)
|
|
|
|
# Linking flags for BLAS/LAPACK and FFTW
|
|
env.set('BLASLIB', self.spec['blas'].libs.ld_flags)
|
|
env.set('LAPACKLIB', self.spec['lapack'].libs.ld_flags)
|
|
env.set('FFTWLIB', self.spec['fftw'].libs.ld_flags)
|
|
|
|
# The number of make jobs (commands) to run simultaneously
|
|
env.set('JOBS', str(make_jobs))
|
|
|
|
@run_before('build')
|
|
@on_package_attributes(run_tests=True)
|
|
def test_blas_linkage(self):
|
|
"""Quick test to ensure that BLAS linkage is working correctly."""
|
|
|
|
make('-C', 'opensource/maketests', 'clean')
|
|
make('-C', 'opensource/maketests', 'dummy_blas')
|
|
make('-C', 'opensource/maketests', 'linkstatus')
|
|
|
|
def install(self, spec, prefix):
|
|
# Install binaries in $CBENCHOME/bin
|
|
make('install')
|
|
|
|
# This creates a testing tree (if one doesn't already exist) and
|
|
# copies the binaries from `$CBENCHOME/bin` to `$CBENCHTEST/bin`.
|
|
# This allows you to use the testing tree independently of the
|
|
# source tree in the future.
|
|
make('installtests')
|