nwchem: remove -mtune=native flags (#37892)
Co-authored-by: Edoardo Aprà <edoardo.apra@gmail.com>
This commit is contained in:
parent
5f1bc15e80
commit
b313b28e64
1 changed files with 4 additions and 0 deletions
|
@ -67,12 +67,16 @@ def install(self, spec, prefix):
|
||||||
"MRCC_METHODS=y", # TCE extra module
|
"MRCC_METHODS=y", # TCE extra module
|
||||||
"IPCCSD=y", # TCE extra module
|
"IPCCSD=y", # TCE extra module
|
||||||
"EACCSD=y", # TCE extra module
|
"EACCSD=y", # TCE extra module
|
||||||
|
"V=1", # verbose build
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
if self.spec.satisfies("@7.2.0:"):
|
if self.spec.satisfies("@7.2.0:"):
|
||||||
args.extend(["NWCHEM_MODULES=all python gwmol"])
|
args.extend(["NWCHEM_MODULES=all python gwmol"])
|
||||||
|
args.extend(["USE_HWOPT=n"])
|
||||||
else:
|
else:
|
||||||
args.extend(["NWCHEM_MODULES=all python"])
|
args.extend(["NWCHEM_MODULES=all python"])
|
||||||
|
# archspec flags are injected through the compiler wrapper
|
||||||
|
filter_file("(-mtune=native|-mcpu=native|-xHost)", "", "src/config/makefile.h")
|
||||||
|
|
||||||
# TODO: query if blas/lapack/scalapack uses 64bit Ints
|
# TODO: query if blas/lapack/scalapack uses 64bit Ints
|
||||||
# A flag to distinguish between 32bit and 64bit integers in linear
|
# A flag to distinguish between 32bit and 64bit integers in linear
|
||||||
|
|
Loading…
Reference in a new issue