[flang-commits] [flang] [flang][cmake][bolt] Do not train on non-strictly-fortran test cases (PR #206130)
Paul Osmialowski via flang-commits
flang-commits at lists.llvm.org
Fri Jul 3 04:42:40 PDT 2026
================
@@ -29,3 +29,27 @@ config.name = "Flang BOLT Training"
config.flang_exe = perf_wrapper + flang_nowrapper
config.llvm_profile_file = ''
+
+# suffixes: A list of file extensions to treat as test files.
+config.suffixes = [
+ ".f",
+ ".F",
+ ".ff",
+ ".FOR",
+ ".for",
+ ".f77",
+ ".f90",
+ ".F90",
+ ".ff90",
+ ".f95",
+ ".F95",
+ ".ff95",
+ ".fpp",
+ ".FPP",
+ ".f18",
+ ".F18",
+ ".f03",
+ ".F03",
+ ".f08",
+ ".F08",
+]
----------------
pawosm-arm wrote:
`what exactly we are focusing on improving with pgo and bolt here?` we're trying to improve it here by making it complete the training process. Currently our CI cannot cope, so I'm looking for some ways of limiting the training scope. Eventually, we came up with some other idea, so I presume this PR can be closed, as it does not introduce any improvement at all, and eventually it turned out it doesn't really help our CI with coping either.
https://github.com/llvm/llvm-project/pull/206130
More information about the flang-commits
mailing list