Use __skip_rocmclang for cmake 3.21 in rocblas/rocfft to avoid incomplete compiler support (#25253)
This commit is contained in:
parent
420113d5ab
commit
4384ff8e41
@ -106,4 +106,8 @@ def cmake_args(self):
|
||||
arch = arch + ':xnack-'
|
||||
args.append(self.define('Tensile_ARCHITECTURE', arch))
|
||||
|
||||
# See https://github.com/ROCmSoftwarePlatform/rocBLAS/issues/1196
|
||||
if self.spec.satisfies('^cmake@3.21:'):
|
||||
args.append(self.define('__skip_rocmclang', 'ON'))
|
||||
|
||||
return args
|
||||
|
@ -63,4 +63,8 @@ def cmake_args(self):
|
||||
if tgt_sram[0] != 'none' and '@3.9.0:' in self.spec:
|
||||
args.append(self.define('AMDGPU_TARGETS_SRAM_ECC', ";".join(tgt_sram)))
|
||||
|
||||
# See https://github.com/ROCmSoftwarePlatform/rocFFT/issues/322
|
||||
if self.spec.satisfies('^cmake@3.21:'):
|
||||
args.append(self.define('__skip_rocmclang', 'ON'))
|
||||
|
||||
return args
|
||||
|
Loading…
Reference in New Issue
Block a user