We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1f30a51 + 127f3f3 commit 0b7b6b5Copy full SHA for 0b7b6b5
easybuild/easyblocks/f/flexiblas.py
@@ -109,8 +109,11 @@ def configure_step(self):
109
unsupported_libs = [x for x in self.blas_libs if x not in supported_blas_libs]
110
if unsupported_libs:
111
raise EasyBuildError("One or more unsupported libraries used: %s", ', '.join(unsupported_libs))
112
+ # need to use CMake naming convention
113
if 'AOCL-BLAS' in self.blas_libs:
114
self.blas_libs[self.blas_libs.index('AOCL-BLAS')] = 'AOCL_mt'
115
+ if configopts['FLEXIBLAS_DEFAULT'] == 'AOCL-BLAS':
116
+ configopts['FLEXIBLAS_DEFAULT'] = 'AOCL_mt'
117
# list of BLAS libraries to use is specified via -DEXTRA=...
118
configopts['EXTRA'] = ';'.join(self.blas_libs)
119
0 commit comments