Skip to content

Commit

Permalink
Merge pull request #263 from tlfalcon/fix-power-uncore-fixups-err
Browse files Browse the repository at this point in the history
create_perf_json: Fix missing 'r' in power_uncore_fixups
  • Loading branch information
edwarddavidbaker authored Dec 17, 2024
2 parents ac8410b + 4504370 commit 3fc7a87
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/create_perf_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -1365,9 +1365,9 @@ def fixup(form: str) -> str:
('UNC_C_CLOCKTICKS:one_unit', r'cbox_0@event\=0x0@'),
]
power_uncore_fixups = [
('UNC_PKG_ENERGY_STATUS', 'power@energy\-pkg@'),
('FREERUN_PKG_ENERGY_STATUS', 'power@energy\-pkg@'),
('FREERUN_DRAM_ENERGY_STATUS', 'power@energy\-ram@'),
('UNC_PKG_ENERGY_STATUS', r'power@energy\-pkg@'),
('FREERUN_PKG_ENERGY_STATUS', r'power@energy\-pkg@'),
('FREERUN_DRAM_ENERGY_STATUS', r'power@energy\-ram@'),
]
arch_fixups = {
'ADL': td_event_fixups + [
Expand Down

0 comments on commit 3fc7a87

Please sign in to comment.