candle-benchmarks: depend_on()s: Fix obsoleted and renamed variants (#26250)

Fix solving/concretizing candle-benchmarks:
py-theano: The requested variant +gpu us now named +cuda
opencv: The requested variants +python and +zlib are now fixed deps
This commit is contained in:
bernhardkaindl 2021-09-26 10:37:01 +02:00 committed by GitHub
parent 6ccda81368
commit 5967a10432
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,12 +20,12 @@ class CandleBenchmarks(Package):
extends('python') extends('python')
depends_on('python@2.7:') depends_on('python@2.7:')
depends_on('py-theano +gpu', type=('build', 'run')) depends_on('py-theano +cuda', type=('build', 'run'))
depends_on('py-keras', type=('build', 'run')) depends_on('py-keras', type=('build', 'run'))
depends_on('py-matplotlib +image@:2.2.3', type=('build', 'run')) depends_on('py-matplotlib +image@:2.2.3', type=('build', 'run'))
depends_on('py-tqdm', type=('build', 'run')) depends_on('py-tqdm', type=('build', 'run'))
depends_on('py-scikit-learn', type=('build', 'run')) depends_on('py-scikit-learn', type=('build', 'run'))
depends_on('opencv@3.2.0: +core +highgui +imgproc +jpeg +png +tiff +zlib +python -dnn ~eigen ~gtk') depends_on('opencv@3.2.0: +core +highgui +imgproc +jpeg +png +tiff -dnn ~eigen ~gtk')
depends_on('py-mdanalysis', type=('build', 'run')) depends_on('py-mdanalysis', type=('build', 'run'))
depends_on('py-mpi4py', when='+mpi', type=('build', 'run')) depends_on('py-mpi4py', when='+mpi', type=('build', 'run'))
depends_on('py-h5py~mpi', when='~mpi', type=('build', 'run')) depends_on('py-h5py~mpi', when='~mpi', type=('build', 'run'))