diff options
author | Ray Kinsella <mdr@ashroe.eu> | 2021-09-07 16:26:58 +0100 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2021-09-08 14:30:03 +0000 |
commit | c3cb2075deef7cd35401f9d2f00f3aeb23ed16d5 (patch) | |
tree | a87cb337cd8e41487e76ed6939dd38545089decf /src/plugins/perfmon/intel/core.h | |
parent | 6f98d9900d1c35292be94307724c6c897c24dfe2 (diff) |
perfmon: adding support for papi TMAM
Adding support for Linux papi TMAM on Intel Snowridge. Adds the ability to
indicate that a bundle should be thread or node bundle type based on available
cpu features (rdpmc support).
Type: feature
Signed-off-by: Ray Kinsella <mdr@ashroe.eu>
Change-Id: Ib871b2644fdb2410fbb580e0d21c3a8e2be13aba
Diffstat (limited to 'src/plugins/perfmon/intel/core.h')
-rw-r--r-- | src/plugins/perfmon/intel/core.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/plugins/perfmon/intel/core.h b/src/plugins/perfmon/intel/core.h index cd5c31ba260..a6a5269d772 100644 --- a/src/plugins/perfmon/intel/core.h +++ b/src/plugins/perfmon/intel/core.h @@ -29,8 +29,14 @@ "Reference cycles when the core is not in halt state.") \ _ (0x00, 0x04, 0, 0, 0, 0x00, TOPDOWN, SLOTS, \ "TMA slots available for an unhalted logical processor.") \ - _ (0x00, 0x80, 0, 0, 0, 0x00, TOPDOWN, L1_METRICS, \ - "TMA slots metrics for an unhalted logical processor.") \ + _ (0x00, 0x80, 0, 0, 0, 0x00, TOPDOWN, L1_RETIRING_METRIC, \ + "TMA retiring slots for an unhalted logical processor.") \ + _ (0x00, 0x81, 0, 0, 0, 0x00, TOPDOWN, L1_BAD_SPEC_METRIC, \ + "TMA bad spec slots or an unhalted logical processor.") \ + _ (0x00, 0x82, 0, 0, 0, 0x00, TOPDOWN, L1_FE_BOUND_METRIC, \ + "TMA fe bound slots for an unhalted logical processor.") \ + _ (0x00, 0x83, 0, 0, 0, 0x00, TOPDOWN, L1_BE_BOUND_METRIC, \ + "TMA be bound slots for an unhalted logical processor.") \ _ (0x03, 0x02, 0, 0, 0, 0x00, LD_BLOCKS, STORE_FORWARD, \ "Loads blocked due to overlapping with a preceding store that cannot be" \ " forwarded.") \ |