flecsi: exclude caliper versions that cause aborts with Legion (#31410)

This commit is contained in:
Richard Berger 2022-07-05 09:29:47 -06:00 committed by GitHub
parent dac31ef3c4
commit b7fb5dbb28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,7 +67,10 @@ class Flecsi(CMakePackage, CudaPackage):
# All Current FleCSI Releases # All Current FleCSI Releases
for level in ('low', 'medium', 'high'): for level in ('low', 'medium', 'high'):
depends_on('caliper@2.0.1~adiak~libdw', when='@:1.9 caliper_detail=%s' % level) depends_on('caliper@2.0.1~adiak~libdw', when='@:1.9 caliper_detail=%s' % level)
depends_on('caliper@2.4.0~libdw', when='@2.0: caliper_detail=%s' % level) depends_on('caliper', when='@2.0: caliper_detail=%s' % level)
conflicts('caliper@2.6', when='@2.0: caliper_detail=%s' % level)
conflicts('caliper@2.7', when='@2.0: caliper_detail=%s' % level)
depends_on('graphviz', when='+graphviz') depends_on('graphviz', when='+graphviz')
depends_on('hdf5+hl+mpi', when='+hdf5') depends_on('hdf5+hl+mpi', when='+hdf5')
depends_on('metis@5.1.0:') depends_on('metis@5.1.0:')