WarpX: RZ + PSATD (#16464)

Add additionally required dependencies to WarpX that are needed
for transformations in RZ geometry with spectral (PSATD) solvers.
This commit is contained in:
Axel Huebl 2020-05-05 08:48:23 -07:00 committed by GitHub
parent 33b129b919
commit 6013060c60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,10 +39,12 @@ class Warpx(MakefilePackage):
variant('openpmd', default=True, description='Enable openPMD I/O')
variant('ascent', default=False, description='Enable Ascent in situ vis')
depends_on('cuda', when='backend=cuda')
depends_on('cuda@9.2.88:', when='backend=cuda')
depends_on('mpi', when='+mpi')
depends_on('fftw@3:', when='+psatd')
depends_on('fftw +mpi', when='+psatd +mpi')
depends_on('blaspp', when='+psatd dims=rz')
depends_on('lapackpp', when='+psatd dims=rz')
depends_on('pkgconfig', type='build', when='+openpmd')
depends_on('python', type='build') # AMReX' build system info
depends_on('openpmd-api@0.11.0:,dev', when='+openpmd')