[llvm-branch-commits] [llvm] [llvm-exegesis] Add support for validation counters (PR #76653)

Clement Courbet via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Wed Jan 10 01:02:19 PST 2024


================
@@ -87,6 +93,8 @@ struct BenchmarkMeasure {
   // This is the per-snippet value, i.e. measured quantity for one repetition of
   // the whole snippet.
   double PerSnippetValue;
+  // These are the validation counter values.
+  std::unordered_map<ValidationEvent, int64_t> ValidationCounters;
----------------
legrosbuffle wrote:

Can we make this an ordered map ? This will make the yaml output stable.

https://github.com/llvm/llvm-project/pull/76653


More information about the llvm-branch-commits mailing list