Always set SPLA_OMP and SPLA_STATIC (#21195)
This commit is contained in:
parent
1ceab34fc8
commit
0cf0be588b
1 changed files with 4 additions and 11 deletions
|
@ -41,12 +41,10 @@ class Spla(CMakePackage):
|
|||
depends_on('hsa-rocr-dev', when='+rocm', type='link')
|
||||
|
||||
def cmake_args(self):
|
||||
args = []
|
||||
|
||||
if '+openmp' in self.spec:
|
||||
args += ["-DSPLA_OMP=ON"]
|
||||
else:
|
||||
args += ["-DSPLA_OMP=OFF"]
|
||||
args = [
|
||||
self.define_from_variant('SPLA_OMP', 'openmp'),
|
||||
self.define_from_variant('SPLA_STATIC', 'static')
|
||||
]
|
||||
|
||||
if '+cuda' in self.spec:
|
||||
args += ["-DSPLA_GPU_BACKEND=CUDA"]
|
||||
|
@ -55,11 +53,6 @@ def cmake_args(self):
|
|||
else:
|
||||
args += ["-DSPLA_GPU_BACKEND=OFF"]
|
||||
|
||||
if '+static' in self.spec:
|
||||
args += ["-DSPLA_STATIC=ON"]
|
||||
else:
|
||||
args += ["-DSPLA_STATIC=OFF"]
|
||||
|
||||
if self.spec['blas'].name == 'openblas':
|
||||
args += ["-DSPLA_HOST_BLAS=OPENBLAS"]
|
||||
elif self.spec['blas'].name in ['amdblis', 'blis']:
|
||||
|
|
Loading…
Reference in a new issue