Skip to content
Snippets Groups Projects
Commit 0ccc6941 authored by Nichols A. Romero's avatar Nichols A. Romero Committed by Adam J. Stewart
Browse files

QMCPACK MKL buglet. Now you are able to use the Intel compiler with other BLAS...

QMCPACK MKL buglet. Now you are able to use the Intel compiler with other BLAS and LAPACK providers, no longer forced to use MKL. (#11019)
parent 6034ddfe
No related branches found
No related tags found
No related merge requests found
...@@ -277,6 +277,7 @@ def cmake_args(self): ...@@ -277,6 +277,7 @@ def cmake_args(self):
args.append('-DENABLE_MKL=1') args.append('-DENABLE_MKL=1')
args.append('-DMKL_ROOT=%s' % env['MKLROOT']) args.append('-DMKL_ROOT=%s' % env['MKLROOT'])
else: else:
args.append('-DENABLE_MKL=0')
lapack_dir = ':'.join(( lapack_dir = ':'.join((
spec['lapack'].prefix.include, spec['lapack'].prefix.include,
spec['blas'].prefix.include spec['blas'].prefix.include
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment