This is an ongoing series of commits that are reformatting our Python code. Reformatting is done with `black`. If you end up having problems merging this commit because you have made changes to a python file, the best way to handle that is to run git checkout --ours <yourfile> and then reformat it with black. If you run into any problems, post to discourse about it and we will try to help. RFC Thread below: https://discourse.llvm.org/t/rfc-document-and-standardize-python-code-style Differential Revision: https://reviews.llvm.org/D150782
18 lines
629 B
INI
18 lines
629 B
INI
import sys
|
|
from lit.llvm import llvm_config
|
|
|
|
# FIXME: %mlir_native_utils_lib_dir is set incorrectly on Windows
|
|
if sys.platform == "win32":
|
|
config.unsupported = True
|
|
|
|
# ArmSVE tests must be enabled via build flag.
|
|
if config.mlir_run_arm_sve_tests:
|
|
config.substitutions.append(("%ENABLE_VLA", "true"))
|
|
config.substitutions.append(
|
|
("%VLA_ARCH_ATTR_OPTIONS", '--march=aarch64 --mattr="+sve"')
|
|
)
|
|
else:
|
|
config.substitutions.append(("%ENABLE_VLA", "false"))
|
|
config.substitutions.append(("%VLA_ARCH_ATTR_OPTIONS", ""))
|
|
config.substitutions.append(("%mlir_native_utils_lib_dir", config.mlir_lib_dir))
|