spack/var/spack/repos/builtin/packages/vecgeom/package.py
Tom Scogland 18c2f1a57a
refactor: packages import spack.package explicitly (#30404)
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
2022-05-28 12:55:44 -04:00

139 lines
6.4 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 Vecgeom(CMakePackage, CudaPackage):
"""The vectorized geometry library for particle-detector simulation
(toolkits)."""
homepage = "https://gitlab.cern.ch/VecGeom/VecGeom"
url = "https://gitlab.cern.ch/VecGeom/VecGeom/-/archive/v1.1.6/VecGeom-v1.1.6.tar.gz"
git = "https://gitlab.cern.ch/VecGeom/VecGeom.git"
tags = ['hep']
maintainers = ['drbenmorgan', 'sethrj']
version('master', branch='master')
version('1.2.0', sha256='3448606fceb98ceb72d687d2d3b7ad44c67793d799def4ece9601b8e39c2868a')
version('1.1.20', sha256='e1c75e480fc72bca8f8072ea00320878a9ae375eed7401628b15cddd097ed7fd')
version('1.1.19', sha256='4c586b57fd4e30be044366c9be983249c7fa8bec629624523f5f69fd9caaa05b')
version('1.1.18', sha256='2780640233a36e0d3c767140417015be1893c1ad695ccc0bd3ee0767bc9fbed8')
version('1.1.17', sha256='2e95429b795311a6986320d785bedcd9dace9f8e7b7f6bd778d23a4ff23e0424')
version('1.1.16', sha256='2fa636993156d9d06750586e8a1ac1701ae2be62dea07964e2369698ae521d02')
version('1.1.15', sha256='0ee9897eb12d8d560dc0c9e56e8fdb78d0111f651a984df24e983da035bd1c70')
version('1.1.13', sha256='6bb364cc74bdab2e64e2fe132debd7f1e192da0a103f5149df7ab25b7c19a205')
version('1.1.12', sha256='fec4495aac4a9d583f076551da61a68b956bba1dd1ebe1cd48c00ef95c962049')
version('1.1.9', sha256='a90e11bf83724300d1d7206e5fe89a7915c4ec6aae881587f18e282ac0f6ee8e')
version('1.1.8', sha256='9c42206d788ec4b791571882f5ea8d2c591c938abe61c21cc5ec37bfea6bf768')
version('1.1.7', sha256='cc79a0baa783b21ecc399c4e7cca925ca340e6aeb96e3b2cad45c141557519bf')
version('1.1.6', sha256='c4806a6b67d01b40074b8cc6865d78574a6a1c573be51696f2ecdf98b9cb954a')
version('1.1.5', sha256='da674f3bbc75c30f56c1a2d251fa8930c899f27fa64b03a36569924030d87b95')
version('1.1.3', sha256='ada09e8b6b2fa6c058290302b2cb5a6c2e644192aab1623c31d18c6a2f4c01c8')
version('1.1.0', sha256='e9d1ef83ff591fe4f9ef744a4d3155a3dc7e90ddb6735b24f3afe4c2dc3f7064')
version('1.0.1', sha256='1eae7ac9014c608e8d8db5568058b8c0fea1a1dc7a8f54157a3a1c997b6fd9eb')
version('0.5.2', tag='v00.05.02',
commit='a7e0828c915ff936a79e672d1dd84b087a323b51')
version('0.3.rc', sha256='a87a9ea4ab126b59ff9c79182bc0911ead3d76dd197194742e2a35ccd341299d')
_cxxstd_values = ('11', '14', '17')
variant('cxxstd', default='17', values=_cxxstd_values, multi=False,
description='Use the specified C++ standard when building')
variant('gdml', default=True,
description='Support native GDML geometry descriptions')
variant('geant4', default=False,
description='Support Geant4 geometry construction')
variant('root', default=False,
description='Support ROOT geometry construction')
variant('shared', default=True,
description='Build shared libraries')
depends_on('veccore')
depends_on('veccore@0.8.0', when='@1.1.18:')
depends_on('veccore@0.5.2:', when='@1.1.0:')
depends_on('veccore@0.4.2', when='@:1.0')
conflicts('+cuda', when='@:1.1.5')
conflicts('cxxstd=14', when='@1.2:')
conflicts('cxxstd=11', when='@1.2:')
# Fix missing CMAKE_CUDA_STANDARD
patch('https://gitlab.cern.ch/VecGeom/VecGeom/-/commit/7094dd180ef694f2abb7463cafcedfb8b8ed30a1.diff',
sha256='34f1a6899616e40bce33d80a38a9b409f819cbaab07b2e3be7f4ec4bedb52b29',
when='@1.1.7 +cuda')
# Fix installed target properties to not propagate flags to nvcc
patch('https://gitlab.cern.ch/VecGeom/VecGeom/-/commit/ac398bd109dd9175e4a898cd4b62571a3cc88252.diff',
sha256='a9ba136d3ed4282ec950069da2199f22beadea27d89a4264d8773ba329e253df',
when='@1.1.18 +cuda ^cuda@:11.4')
for std in _cxxstd_values:
depends_on('geant4 cxxstd=' + std, when='+geant4 cxxstd=' + std)
depends_on('root cxxstd=' + std, when='+root cxxstd=' + std)
depends_on('xerces-c cxxstd=' + std, when='+gdml cxxstd=' + std)
def cmake_args(self):
spec = self.spec
define = self.define
from_variant = self.define_from_variant
target_instructions = 'empty'
if '~cuda' in spec:
# Only add vectorization if CUDA is disabled due to nvcc flag
# forwarding issues
vecgeom_arch = "sse2 sse3 ssse3 sse4.1 sse4.2 avx avx2".split()
for feature in reversed(vecgeom_arch):
if feature.replace('.', '_') in spec.target:
target_instructions = feature
break
prefix = 'VECGEOM_' if spec.satisfies('@1.2:') else ''
args = [
define(prefix + 'BACKEND', 'Scalar'),
define(prefix + 'BUILTIN_VECCORE', False),
define(prefix + 'NO_SPECIALIZATION', True),
define('VECGEOM_VECTOR', target_instructions),
from_variant('BUILD_SHARED_LIBS', 'shared'),
from_variant('CMAKE_CXX_STANDARD', 'cxxstd'),
from_variant(prefix + 'GDML', 'gdml'),
from_variant(prefix + 'GEANT4', 'geant4'),
from_variant(prefix + 'ROOT', 'root'),
]
if spec.satisfies('@1.1.19:'):
args.append(from_variant('VECGEOM_ENABLE_CUDA', 'cuda'))
if '+cuda' in spec:
# This will add an (ignored) empty string if no values are
# selected, otherwise will add a CMake list of arch values
args.append(define(
'CMAKE_CUDA_ARCHITECTURES', spec.variants['cuda_arch'].value
))
else:
args.append(from_variant('CUDA'))
if '+cuda' in spec:
arch = spec.variants['cuda_arch'].value
if len(arch) != 1:
raise InstallError("Exactly one cuda_arch must be specified")
args.append(define('CUDA_ARCH', arch[0]))
# Set testing flags
build_tests = self.run_tests
args.append(define('BUILD_TESTING', build_tests))
if spec.satisfies('@:1.1'):
args.extend([
define('CTEST', build_tests),
define('GDMLTESTING', build_tests and '+gdml' in spec),
])
if spec.satisfies("@:0.5.2"):
args.extend([
define('USOLIDS', True),
define('USOLIDS_VECGEOM', True),
])
return args