Added RAJA v0.12.1`and Umpire v4.0.1 (#18756)
Also renamed 'master' to 'main'
This commit is contained in:
parent
a1e19de8e1
commit
30d24db116
2 changed files with 10 additions and 2 deletions
|
@ -13,7 +13,9 @@ class Raja(CMakePackage, CudaPackage):
|
||||||
git = "https://github.com/LLNL/RAJA.git"
|
git = "https://github.com/LLNL/RAJA.git"
|
||||||
|
|
||||||
version('develop', branch='develop', submodules='True')
|
version('develop', branch='develop', submodules='True')
|
||||||
version('master', branch='main', submodules='True')
|
version('main', branch='main', submodules='True')
|
||||||
|
version('0.12.1', tag='v0.12.1', submodules="True")
|
||||||
|
version('0.12.0', tag='v0.12.0', submodules="True")
|
||||||
version('0.11.0', tag='v0.11.0', submodules="True")
|
version('0.11.0', tag='v0.11.0', submodules="True")
|
||||||
version('0.10.1', tag='v0.10.1', submodules="True")
|
version('0.10.1', tag='v0.10.1', submodules="True")
|
||||||
version('0.10.0', tag='v0.10.0', submodules="True")
|
version('0.10.0', tag='v0.10.0', submodules="True")
|
||||||
|
|
|
@ -15,7 +15,9 @@ class Umpire(CMakePackage, CudaPackage):
|
||||||
git = 'https://github.com/LLNL/Umpire.git'
|
git = 'https://github.com/LLNL/Umpire.git'
|
||||||
|
|
||||||
version('develop', branch='develop', submodules='True')
|
version('develop', branch='develop', submodules='True')
|
||||||
version('master', branch='main', submodules='True')
|
version('main', branch='main', submodules='True')
|
||||||
|
version('4.0.1', tag='v4.0.1', submodules='True')
|
||||||
|
version('4.0.0', tag='v4.0.0', submodules='True')
|
||||||
version('3.0.0', tag='v3.0.0', submodules='True')
|
version('3.0.0', tag='v3.0.0', submodules='True')
|
||||||
version('2.1.0', tag='v2.1.0', submodules='True')
|
version('2.1.0', tag='v2.1.0', submodules='True')
|
||||||
version('2.0.0', tag='v2.0.0', submodules='True')
|
version('2.0.0', tag='v2.0.0', submodules='True')
|
||||||
|
@ -45,6 +47,7 @@ class Umpire(CMakePackage, CudaPackage):
|
||||||
variant('openmp', default=False, description='Build with OpenMP support')
|
variant('openmp', default=False, description='Build with OpenMP support')
|
||||||
variant('deviceconst', default=False,
|
variant('deviceconst', default=False,
|
||||||
description='Enables support for constant device memory')
|
description='Enables support for constant device memory')
|
||||||
|
variant('examples', default=True, description='Build Umpire Examples')
|
||||||
variant('tests', default='none', values=('none', 'basic', 'benchmarks'),
|
variant('tests', default='none', values=('none', 'basic', 'benchmarks'),
|
||||||
multi=False, description='Tests to run')
|
multi=False, description='Tests to run')
|
||||||
|
|
||||||
|
@ -93,6 +96,9 @@ def cmake_args(self):
|
||||||
options.append('-DENABLE_BENCHMARKS={0}'.format(
|
options.append('-DENABLE_BENCHMARKS={0}'.format(
|
||||||
'On' if 'tests=benchmarks' in spec else 'Off'))
|
'On' if 'tests=benchmarks' in spec else 'Off'))
|
||||||
|
|
||||||
|
options.append('-DENABLE_EXAMPLES={0}'.format(
|
||||||
|
'On' if '+examples' in spec else 'Off'))
|
||||||
|
|
||||||
options.append('-DENABLE_TESTS={0}'.format(
|
options.append('-DENABLE_TESTS={0}'.format(
|
||||||
'Off' if 'tests=none' in spec else 'On'))
|
'Off' if 'tests=none' in spec else 'On'))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue