lbann: allow unsupported compiler (#29417)
This commit is contained in:
parent
033647c8b1
commit
ff7230c0cf
4 changed files with 18 additions and 0 deletions
|
@ -81,6 +81,10 @@ def cmake_args(self):
|
|||
arch_str = ";".join(archs)
|
||||
args.append('-DCMAKE_CUDA_ARCHITECTURES=%s' % arch_str)
|
||||
|
||||
if (spec.satisfies('%cce') and
|
||||
spec.satisfies('^cuda+allow-unsupported-compilers')):
|
||||
args.append('-DCMAKE_CUDA_FLAGS=-allow-unsupported-compiler')
|
||||
|
||||
if spec.satisfies('@0.5:'):
|
||||
args.extend([
|
||||
'-DALUMINUM_ENABLE_HOST_TRANSFER:BOOL=%s' % ('+ht' in spec),
|
||||
|
|
|
@ -167,6 +167,10 @@ def cmake_args(self):
|
|||
arch_str = ";".join(archs)
|
||||
args.append('-DCMAKE_CUDA_ARCHITECTURES=%s' % arch_str)
|
||||
|
||||
if (spec.satisfies('%cce') and
|
||||
spec.satisfies('^cuda+allow-unsupported-compilers')):
|
||||
args.append('-DCMAKE_CUDA_FLAGS=-allow-unsupported-compiler')
|
||||
|
||||
if '+cuda' in spec or '+distconv' in spec:
|
||||
args.append('-DcuDNN_DIR={0}'.format(
|
||||
spec['cudnn'].prefix))
|
||||
|
|
|
@ -69,6 +69,8 @@ class Hydrogen(CMakePackage, CudaPackage, ROCmPackage):
|
|||
|
||||
depends_on('cmake@3.21.0:', type='build', when='@1.5.2:')
|
||||
depends_on('cmake@3.17.0:', type='build', when='@:1.5.1')
|
||||
depends_on('cmake@3.22.0:', type='build', when='%cce')
|
||||
|
||||
depends_on('mpi')
|
||||
depends_on('hwloc@1.11:')
|
||||
depends_on('hwloc +cuda +nvml', when='+cuda')
|
||||
|
@ -176,6 +178,10 @@ def cmake_args(self):
|
|||
arch_str = ";".join(archs)
|
||||
args.append('-DCMAKE_CUDA_ARCHITECTURES=%s' % arch_str)
|
||||
|
||||
if (spec.satisfies('%cce') and
|
||||
spec.satisfies('^cuda+allow-unsupported-compilers')):
|
||||
args.append('-DCMAKE_CUDA_FLAGS=-allow-unsupported-compiler')
|
||||
|
||||
if '+rocm' in spec:
|
||||
args.extend([
|
||||
'-DCMAKE_CXX_FLAGS=-std=c++17',
|
||||
|
|
|
@ -325,6 +325,10 @@ def cmake_args(self):
|
|||
arch_str = ";".join(archs)
|
||||
args.append('-DCMAKE_CUDA_ARCHITECTURES=%s' % arch_str)
|
||||
|
||||
if (spec.satisfies('%cce') and
|
||||
spec.satisfies('^cuda+allow-unsupported-compilers')):
|
||||
args.append('-DCMAKE_CUDA_FLAGS=-allow-unsupported-compiler')
|
||||
|
||||
if spec.satisfies('@:0.90') or spec.satisfies('@0.95:'):
|
||||
args.append(
|
||||
'-DHydrogen_DIR={0}/CMake/hydrogen'.format(
|
||||
|
|
Loading…
Reference in a new issue