Skip to content

Commit 84e8274

Browse files
mahesh-attardemattarde
andauthored
[X86][llvm-exegesis] fix LNLP performance counter binding issue (llvm#146348)
We added LNLP sched model recently, PFM counter bounding names needs to match cpu string. llvm-exegesis wont produce results without correct naming. Co-authored-by: mattarde <[email protected]>
1 parent 393aebf commit 84e8274

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/X86/X86PfmCounters.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ def LunarLakePfmCounters : ProcPfmCounters {
254254
];
255255
let ValidationCounters = DefaultIntelPfmValidationCounters;
256256
}
257-
def : PfmCountersBinding<"Lunarlake", LunarLakePfmCounters>;
257+
def : PfmCountersBinding<"lunarlake", LunarLakePfmCounters>;
258258

259259
// AMD X86 Counters.
260260
defvar DefaultAMDPfmValidationCounters = [

0 commit comments

Comments
 (0)