We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcf8f59 commit 9815b17Copy full SHA for 9815b17
easybuild/easyblocks/generic/nvidiabase.py
@@ -153,8 +153,9 @@ def _get_active_cuda(self):
153
if cuda_dependency_version:
154
external_cuda_version = '.'.join(cuda_dependency_version.split('.')[:2])
155
if supported_cuda_versions and external_cuda_version not in supported_cuda_versions:
156
- raise EasyBuildError(
157
- f"CUDA version '{external_cuda_version}' from external CUDA not supported by "
+ # we cannot error out here to avoid breaking existing easyconfigs
+ print_warning(
158
+ f"CUDA version '{external_cuda_version}' from external CUDA might not be supported by "
159
f"{self.name}-{self.version}: {supported_cuda_commasep}"
160
)
161
self.log.info(
0 commit comments